This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
11 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
#pragma once | ||
|
||
#include "ARMS/lib.h" | ||
|
||
// The config file needs to be last because the arms::init() | ||
// function inside of it depends on init() funciton of the subsystems | ||
#include "ARMS/config.h" | ||
#include "ARMS/chassis.h" | ||
#include "ARMS/flags.h" | ||
#include "ARMS/odom.h" | ||
#include "ARMS/pid.h" | ||
#include "ARMS/point.h" | ||
#include "ARMS/selector.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#ifndef _ARMS_CONFIG_H_ | ||
#define _ARMS_CONFIG_H_ | ||
|
||
#include "ARMS/lib.h" | ||
#include "ARMS/api.h" | ||
|
||
|
||
namespace arms { | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
#include "ARMS/api.h" | ||
#include "api.h" | ||
|
||
// subsystems | ||
using namespace pros; | ||
|
||
#ifdef __cplusplus | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "ARMS/lib.h" | ||
#include "ARMS/api.h" | ||
#include "api.h" | ||
#include "pros/motors.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "ARMS/lib.h" | ||
#include "ARMS/api.h" | ||
#include "api.h" | ||
|
||
namespace arms::odom { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#include "ARMS/lib.h" | ||
#include "ARMS/api.h" | ||
#include "api.h" | ||
|
||
namespace arms::pid { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#include "main.h" | ||
#include "ARMS/config.h" | ||
|
||
pros::Controller master(CONTROLLER_MASTER); | ||
|
||
|