diff options
| author | Selene ToyKeeper | 2023-11-02 18:51:38 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2023-11-02 18:51:38 -0600 |
| commit | 2dcd56ce3d00fc7414652e6f866bf8eefd42dba9 (patch) | |
| tree | e2d5e5159ad5ce379479f49011131880d7e49b7e /fsm/spaghetti-monster.h | |
| parent | reorganized project files (part 1) (diff) | |
| download | anduril-2dcd56ce3d00fc7414652e6f866bf8eefd42dba9.tar.gz anduril-2dcd56ce3d00fc7414652e6f866bf8eefd42dba9.tar.bz2 anduril-2dcd56ce3d00fc7414652e6f866bf8eefd42dba9.zip | |
got things to compile again, renamed #includes
(also modified the build scripts to work with the new file structure)
Diffstat (limited to 'fsm/spaghetti-monster.h')
| -rw-r--r-- | fsm/spaghetti-monster.h | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/fsm/spaghetti-monster.h b/fsm/spaghetti-monster.h index 77431f8..e28f64a 100644 --- a/fsm/spaghetti-monster.h +++ b/fsm/spaghetti-monster.h @@ -19,20 +19,20 @@ #include <avr/power.h> // include project definitions to help with recognizing symbols -#include "fsm-events.h" -#include "fsm-states.h" -#include "fsm-adc.h" -#include "fsm-wdt.h" -#include "fsm-pcint.h" -#include "fsm-standby.h" -#include "fsm-channels.h" -#include "fsm-ramping.h" -#include "fsm-random.h" +#include "fsm/events.h" +#include "fsm/states.h" +#include "fsm/adc.h" +#include "fsm/wdt.h" +#include "fsm/pcint.h" +#include "fsm/standby.h" +#include "fsm/channels.h" +#include "fsm/ramping.h" +#include "fsm/random.h" #ifdef USE_EEPROM -#include "fsm-eeprom.h" +#include "fsm/eeprom.h" #endif -#include "fsm-misc.h" -#include "fsm-main.h" +#include "fsm/misc.h" +#include "fsm/main.h" #if defined(USE_DELAY_MS) || defined(USE_DELAY_4MS) || defined(USE_DELAY_ZERO) || defined(USE_DEBUG_BLINK) #define OWN_DELAY @@ -58,18 +58,18 @@ void setup(); void loop(); // include executable functions too, for easier compiling -#include "fsm-states.c" -#include "fsm-events.c" -#include "fsm-adc.c" -#include "fsm-wdt.c" -#include "fsm-pcint.c" -#include "fsm-standby.c" -#include "fsm-channels.c" -#include "fsm-ramping.c" -#include "fsm-random.c" +#include "fsm/states.c" +#include "fsm/events.c" +#include "fsm/adc.c" +#include "fsm/wdt.c" +#include "fsm/pcint.c" +#include "fsm/standby.c" +#include "fsm/channels.c" +#include "fsm/ramping.c" +#include "fsm/random.c" #ifdef USE_EEPROM -#include "fsm-eeprom.c" +#include "fsm/eeprom.c" #endif -#include "fsm-misc.c" -#include "fsm-main.c" +#include "fsm/misc.c" +#include "fsm/main.c" |
