From 586a71f08fd90258ce69acfc7b58a7a3f41d72be Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Sun, 6 Aug 2017 16:28:40 +1000 Subject: [PATCH] Fix typo on fuel pump macro (Wasn't used anyway) --- speeduino/globals.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speeduino/globals.h b/speeduino/globals.h index 1b9f6609..3c6c4cbc 100644 --- a/speeduino/globals.h +++ b/speeduino/globals.h @@ -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;