From 5fe022511a64d2c8a84d9eb6463caefdcb56c08b Mon Sep 17 00:00:00 2001 From: rusEfi Date: Mon, 17 Oct 2016 22:02:06 -0400 Subject: [PATCH] auto-sync --- firmware/chibios/boards/ST_STM32F4_DISCOVERY/board.h | 6 +++--- firmware/rusefi.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/firmware/chibios/boards/ST_STM32F4_DISCOVERY/board.h b/firmware/chibios/boards/ST_STM32F4_DISCOVERY/board.h index 5208960043..c56d40a7dd 100644 --- a/firmware/chibios/boards/ST_STM32F4_DISCOVERY/board.h +++ b/firmware/chibios/boards/ST_STM32F4_DISCOVERY/board.h @@ -126,7 +126,7 @@ #define GPIOE_PIN0 0 #define GPIOE_PIN1 1 #define GPIOE_PIN2 2 -#define GPIOE_PIN3 3 +#define GPIOE_PIN3 3 #define GPIOE_PIN4 4 #define GPIOE_PIN5 5 #define GPIOE_PIN6 6 @@ -721,7 +721,7 @@ #define VAL_GPIOE_MODER (PIN_MODE_INPUT(GPIOE_PIN0) | \ PIN_MODE_INPUT(GPIOE_PIN1) | \ PIN_MODE_INPUT(GPIOE_PIN2) | \ - PIN_MODE_INPUT(GPIOE_PIN3) | \ + PIN_MODE_OUTPUT(GPIOE_PIN3) | \ PIN_MODE_INPUT(GPIOE_PIN4) | \ PIN_MODE_INPUT(GPIOE_PIN5) | \ PIN_MODE_INPUT(GPIOE_PIN6) | \ @@ -769,7 +769,7 @@ #define VAL_GPIOE_PUPDR (PIN_PUPDR_PULLDOWN(GPIOE_PIN0) | \ PIN_PUPDR_PULLDOWN(GPIOE_PIN1) | \ PIN_PUPDR_PULLDOWN(GPIOE_PIN2) | \ - PIN_PUPDR_PULLDOWN(GPIOE_PIN3) | \ + PIN_PUPDR_FLOATING(GPIOE_PIN3) | \ PIN_PUPDR_PULLDOWN(GPIOE_PIN4) | \ PIN_PUPDR_PULLDOWN(GPIOE_PIN5) | \ PIN_PUPDR_PULLDOWN(GPIOE_PIN6) | \ diff --git a/firmware/rusefi.cpp b/firmware/rusefi.cpp index a533586ef3..0c70cbf326 100644 --- a/firmware/rusefi.cpp +++ b/firmware/rusefi.cpp @@ -294,5 +294,5 @@ int getRusEfiVersion(void) { return 123; // this is here to make the compiler happy about the unused array if (UNUSED_CCM_SIZE[0] * 0 != 0) return 3211; // this is here to make the compiler happy about the unused array - return 20161014; + return 20161017; }