Fix typo on fuel pump macro (Wasn't used anyway)

This commit is contained in:
Josh Stewart 2017-08-06 16:28:40 +10:00
parent a60e9397e6
commit 586a71f08f
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@
#define SERIAL_BUFFER_THRESHOLD 32 // When the serial buffer is filled to greater than this threshold value, the serial processing operations will be performed more urgently in order to avoid it overflowing. Serial buffer is 64 bytes long, so the threshold is set at half this as a reasonable figure
#define FUEL_PUMP_ON() *pump_pin_port |= (pump_pin_mask)
#define FUEL_PUMP_OFF() *tach_pin_port &= ~(tach_pin_mask)
#define FUEL_PUMP_OFF() *pump_pin_port &= ~(pump_pin_mask)
const byte signature = 20;