diff options
| author | Selene ToyKeeper | 2018-11-03 17:22:58 -0600 |
|---|---|---|
| committer | Selene ToyKeeper | 2018-11-03 17:22:58 -0600 |
| commit | 9e3e7a8e6a7c0ed3abe21b9ae24c07d8c13e3e93 (patch) | |
| tree | e4e71c53218a9bdc95b4c9b165c584da6b86b188 | |
| parent | merged trunk and flash-safer branch (clean up flash/build scripts and make fl... (diff) | |
| download | anduril-9e3e7a8e6a7c0ed3abe21b9ae24c07d8c13e3e93.tar.gz anduril-9e3e7a8e6a7c0ed3abe21b9ae24c07d8c13e3e93.tar.bz2 anduril-9e3e7a8e6a7c0ed3abe21b9ae24c07d8c13e3e93.zip | |
added missing ifdef which broke per-hardware ramp lengths
Diffstat (limited to '')
| -rw-r--r-- | spaghetti-monster/anduril/anduril.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/spaghetti-monster/anduril/anduril.c b/spaghetti-monster/anduril/anduril.c index fd3c534..df478ee 100644 --- a/spaghetti-monster/anduril/anduril.c +++ b/spaghetti-monster/anduril/anduril.c @@ -140,7 +140,9 @@ /********* Configure SpaghettiMonster *********/ #define USE_DELAY_ZERO #define USE_RAMPING +#ifndef RAMP_LENGTH #define RAMP_LENGTH 150 // default, if not overridden in a driver cfg file +#endif #define MAX_BIKING_LEVEL 120 // should be 127 or less #define USE_BATTCHECK |
