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 /hw/wurkkos/ts25 | |
| 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 '')
| -rw-r--r-- | hw/wurkkos/ts25/cfg.h | 4 | ||||
| -rw-r--r-- | hw/wurkkos/ts25/hwdef.c | 2 | ||||
| -rw-r--r-- | hw/wurkkos/ts25/hwdef.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/hw/wurkkos/ts25/cfg.h b/hw/wurkkos/ts25/cfg.h index 852e91b..9a3f129 100644 --- a/hw/wurkkos/ts25/cfg.h +++ b/hw/wurkkos/ts25/cfg.h @@ -4,8 +4,8 @@ #pragma once #define MODEL_NUMBER "0715" -#include "hwdef-wurkkos-ts25.h" -#include "wurkkos-cfg.h" +#include "wurkkos/ts25/hwdef.h" +#include "wurkkos/cfg.h" // ATTINY: 1616 // this light has three aux LED channels: R, G, B diff --git a/hw/wurkkos/ts25/hwdef.c b/hw/wurkkos/ts25/hwdef.c index 26c9b0d..f7cef38 100644 --- a/hw/wurkkos/ts25/hwdef.c +++ b/hw/wurkkos/ts25/hwdef.c @@ -4,7 +4,7 @@ #pragma once -#include "chan-rgbaux.c" +#include "fsm/chan-rgbaux.c" void set_level_zero(); diff --git a/hw/wurkkos/ts25/hwdef.h b/hw/wurkkos/ts25/hwdef.h index 5eed219..0604432 100644 --- a/hw/wurkkos/ts25/hwdef.h +++ b/hw/wurkkos/ts25/hwdef.h @@ -17,10 +17,10 @@ #define ATTINY 1616 #include <avr/io.h> -#define HWDEF_C_FILE hwdef-wurkkos-ts25.c +#define HWDEF_C_FILE wurkkos/ts25/hwdef.c // allow using aux LEDs as extra channel modes -#include "chan-rgbaux.h" +#include "fsm/chan-rgbaux.h" // channel modes: // * 0. FET+7135 stacked |
