From 2dcd56ce3d00fc7414652e6f866bf8eefd42dba9 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Thu, 2 Nov 2023 18:51:38 -0600 Subject: got things to compile again, renamed #includes (also modified the build scripts to work with the new file structure) --- fsm/spaghetti-monster.h | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'fsm/spaghetti-monster.h') 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 // 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" -- cgit v1.2.3