auto-sync
This commit is contained in:
parent
d4a2ab4c56
commit
9ac09cdcf4
|
@ -216,10 +216,6 @@
|
||||||
#define LED_COMMUNICATION_PORT GPIOD
|
#define LED_COMMUNICATION_PORT GPIOD
|
||||||
#define LED_COMMUNICATION_PIN GPIOD_LED6
|
#define LED_COMMUNICATION_PIN GPIOD_LED6
|
||||||
|
|
||||||
#define EFI_SIGNAL_EXECUTOR_SLEEP FALSE
|
|
||||||
#define EFI_SIGNAL_EXECUTOR_ONE_TIMER TRUE
|
|
||||||
#define EFI_SIGNAL_EXECUTOR_HW_TIMER FALSE
|
|
||||||
|
|
||||||
// USART1 -> check defined STM32_SERIAL_USE_USART1
|
// USART1 -> check defined STM32_SERIAL_USE_USART1
|
||||||
// For GPS we have USART1. We can start with PB7 USART1_RX and PB6 USART1_TX
|
// For GPS we have USART1. We can start with PB7 USART1_RX and PB6 USART1_TX
|
||||||
#define GPS_SERIAL_DEVICE &SD1
|
#define GPS_SERIAL_DEVICE &SD1
|
||||||
|
|
|
@ -42,6 +42,10 @@
|
||||||
*/
|
*/
|
||||||
#define EFI_CLI_SUPPORT TRUE
|
#define EFI_CLI_SUPPORT TRUE
|
||||||
|
|
||||||
|
#define EFI_SIGNAL_EXECUTOR_SLEEP FALSE
|
||||||
|
#define EFI_SIGNAL_EXECUTOR_ONE_TIMER TRUE
|
||||||
|
#define EFI_SIGNAL_EXECUTOR_HW_TIMER FALSE
|
||||||
|
|
||||||
#define EFI_INTERNAL_FLASH TRUE
|
#define EFI_INTERNAL_FLASH TRUE
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -15,13 +15,13 @@
|
||||||
|
|
||||||
#include "SingleTimerExecutor.h"
|
#include "SingleTimerExecutor.h"
|
||||||
#include "efitime.h"
|
#include "efitime.h"
|
||||||
#include "rfiutil.h"
|
|
||||||
|
|
||||||
#if EFI_PROD_CODE
|
#if EFI_PROD_CODE
|
||||||
#include "microsecond_timer.h"
|
#include "microsecond_timer.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if EFI_SIGNAL_EXECUTOR_ONE_TIMER || defined(__DOXYGEN__)
|
#if (EFI_SIGNAL_EXECUTOR_ONE_TIMER && EFI_PROD_CODE )|| defined(__DOXYGEN__)
|
||||||
|
#include "rfiutil.h"
|
||||||
|
|
||||||
static Executor instance;
|
static Executor instance;
|
||||||
|
|
||||||
|
|
|
@ -102,10 +102,10 @@ CPPSRC = $(UTILSRC_CPP) \
|
||||||
$(CONTROLLERS_MATH_SRC_CPP) \
|
$(CONTROLLERS_MATH_SRC_CPP) \
|
||||||
$(CONTROLLERS_SENSORS_SRC_CPP) \
|
$(CONTROLLERS_SENSORS_SRC_CPP) \
|
||||||
$(TEST_SRC_CPP) \
|
$(TEST_SRC_CPP) \
|
||||||
|
$(SYSTEMSRC_CPP) \
|
||||||
$(PROJECT_DIR)/controllers/trigger/trigger_central.cpp \
|
$(PROJECT_DIR)/controllers/trigger/trigger_central.cpp \
|
||||||
$(PROJECT_DIR)/controllers/trigger/rpm_calculator.cpp \
|
$(PROJECT_DIR)/controllers/trigger/rpm_calculator.cpp \
|
||||||
$(PROJECT_DIR)/controllers/trigger/main_trigger_callback.cpp \
|
$(PROJECT_DIR)/controllers/trigger/main_trigger_callback.cpp \
|
||||||
$(PROJECT_DIR)/controllers/system/event_queue.cpp \
|
|
||||||
main.cpp
|
main.cpp
|
||||||
|
|
||||||
# C sources to be compiled in ARM mode regardless of the global setting.
|
# C sources to be compiled in ARM mode regardless of the global setting.
|
||||||
|
|
Loading…
Reference in New Issue