diff options
| author | Selene ToyKeeper | 2018-08-06 21:24:05 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2018-08-06 21:24:05 -0600 |
| commit | 6b3960695fcadf249c5927c259523e6deb895aca (patch) | |
| tree | 57ea11e09cf97d72c339fdad90877f4dc51af670 | |
| parent | merged in Emisar D4S / RampingIOS V3 branch (diff) | |
| download | anduril-6b3960695fcadf249c5927c259523e6deb895aca.tar.gz anduril-6b3960695fcadf249c5927c259523e6deb895aca.tar.bz2 anduril-6b3960695fcadf249c5927c259523e6deb895aca.zip | |
Added more driver types to Anduril.
| -rw-r--r-- | spaghetti-monster/anduril/anduril.c | 10 | ||||
| -rwxr-xr-x | spaghetti-monster/anduril/build-all.sh | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/spaghetti-monster/anduril/anduril.c b/spaghetti-monster/anduril/anduril.c index 0c53042..71b4b9a 100644 --- a/spaghetti-monster/anduril/anduril.c +++ b/spaghetti-monster/anduril/anduril.c @@ -22,6 +22,7 @@ // Physical driver type (uncomment one of the following or define it at the gcc command line) //#define FSM_EMISAR_D4_DRIVER //#define FSM_EMISAR_D4S_DRIVER +//#define FSM_EMISAR_D4S_219c_DRIVER //#define FSM_BLF_Q8_DRIVER //#define FSM_FW3A_DRIVER //#define FSM_BLF_GT_DRIVER @@ -65,9 +66,18 @@ #elif defined(FSM_BLF_Q8_DRIVER) #include "cfg-blf-q8.h" +#elif defined(FSM_EMISAR_D1_DRIVER) +#include "cfg-emisar-d1.h" + +#elif defined(FSM_EMISAR_D1S_DRIVER) +#include "cfg-emisar-d1s.h" + #elif defined(FSM_EMISAR_D4_DRIVER) #include "cfg-emisar-d4.h" +#elif defined(FSM_EMISAR_D4S_219c_DRIVER) +#include "cfg-emisar-d4s-219c.h" + #elif defined(FSM_EMISAR_D4S_DRIVER) #include "cfg-emisar-d4s.h" diff --git a/spaghetti-monster/anduril/build-all.sh b/spaghetti-monster/anduril/build-all.sh index c488d77..d0c0d5c 100755 --- a/spaghetti-monster/anduril/build-all.sh +++ b/spaghetti-monster/anduril/build-all.sh @@ -7,6 +7,7 @@ for TARGET in \ EMISAR_D1S \ EMISAR_D4 \ EMISAR_D4S \ + EMISAR_D4S_219c \ FW3A \ ; do echo "===== $TARGET =====" |
