proteus-f4 was requested
This commit is contained in:
parent
76eedf1e2c
commit
09c4def495
|
@ -153,6 +153,8 @@ ifeq ($(USE_FATFS),yes)
|
||||||
include $(PROJECT_DIR)/ext/fatfs.mk
|
include $(PROJECT_DIR)/ext/fatfs.mk
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
BOARDS_DIR = $(PROJECT_DIR)/config/boards
|
||||||
|
|
||||||
include $(PROJECT_DIR)/config/boards/$(PROJECT_BOARD)/board.mk
|
include $(PROJECT_DIR)/config/boards/$(PROJECT_BOARD)/board.mk
|
||||||
include $(PROJECT_DIR)/config/engines/engines.mk
|
include $(PROJECT_DIR)/config/engines/engines.mk
|
||||||
include $(PROJECT_DIR)/console/console.mk
|
include $(PROJECT_DIR)/console/console.mk
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# Combine the related files for a specific platform and MCU.
|
# Combine the related files for a specific platform and MCU.
|
||||||
|
|
||||||
BOARDS_DIR = $(PROJECT_DIR)/config/boards
|
|
||||||
|
|
||||||
# Target ECU board design
|
# Target ECU board design
|
||||||
BOARDSRC_CPP = $(BOARDS_DIR)/microrusefi/board_configuration.cpp
|
BOARDSRC_CPP = $(BOARDS_DIR)/microrusefi/board_configuration.cpp
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,9 @@ adcsample_t vbattSampleProteus = 0;
|
||||||
void proteusAdcHack()
|
void proteusAdcHack()
|
||||||
{
|
{
|
||||||
adcConvert(&ADCD3, &adcConvGroup, samples, 8);
|
adcConvert(&ADCD3, &adcConvGroup, samples, 8);
|
||||||
|
#if defined(STM32F7XX)
|
||||||
SCB_InvalidateDCache_by_Addr(reinterpret_cast<uint32_t*>(samples), sizeof(samples));
|
SCB_InvalidateDCache_by_Addr(reinterpret_cast<uint32_t*>(samples), sizeof(samples));
|
||||||
|
#endif /* STM32F7XX */
|
||||||
|
|
||||||
uint32_t sum = 0;
|
uint32_t sum = 0;
|
||||||
|
|
||||||
|
|
|
@ -23,4 +23,4 @@ endif
|
||||||
|
|
||||||
|
|
||||||
# Override DEFAULT_ENGINE_TYPE
|
# Override DEFAULT_ENGINE_TYPE
|
||||||
DDEFS += -DSTM32F767xx -DEFI_USE_OSC=TRUE -DEFI_FATAL_ERROR_PIN=GPIOE_3 -DFIRMWARE_ID=\"proteus\" -DDEFAULT_ENGINE_TYPE=PROTEUS -DUSE_ADC3_VBATT_HACK -DSTM32_ADC_USE_ADC3=TRUE -DEFI_INCLUDE_ENGINE_PRESETS=FALSE
|
DDEFS += $(MCU_DEFS) -DEFI_USE_OSC=TRUE -DEFI_FATAL_ERROR_PIN=GPIOE_3 -DFIRMWARE_ID=\"proteus\" -DDEFAULT_ENGINE_TYPE=PROTEUS -DUSE_ADC3_VBATT_HACK -DSTM32_ADC_USE_ADC3=TRUE -DEFI_INCLUDE_ENGINE_PRESETS=FALSE
|
||||||
|
|
|
@ -53,6 +53,9 @@ static void setIgnitionPins() {
|
||||||
engineConfiguration->ignitionPinMode = OM_DEFAULT;
|
engineConfiguration->ignitionPinMode = OM_DEFAULT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setSdCardConfigurationOverrides(void) {
|
||||||
|
}
|
||||||
|
|
||||||
static void setLedPins() {
|
static void setLedPins() {
|
||||||
CONFIG(warningLedPin) = GPIOE_3;
|
CONFIG(warningLedPin) = GPIOE_3;
|
||||||
CONFIG(communicationLedPin) = GPIOE_4;
|
CONFIG(communicationLedPin) = GPIOE_4;
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# Combine the related files for a specific platform and MCU.
|
# Combine the related files for a specific platform and MCU.
|
||||||
|
|
||||||
BOARDS_DIR = $(PROJECT_DIR)/config/boards
|
|
||||||
|
|
||||||
# Target ECU board design
|
# Target ECU board design
|
||||||
BOARDSRC_CPP = $(BOARDS_DIR)/skeleton/board_configuration.cpp
|
BOARDSRC_CPP = $(BOARDS_DIR)/skeleton/board_configuration.cpp
|
||||||
|
|
||||||
|
|
|
@ -324,7 +324,7 @@ void AdcDevice::invalidateSamplesCache() {
|
||||||
// As a result, we have to manually invalidate the D-cache any time we (the CPU)
|
// As a result, we have to manually invalidate the D-cache any time we (the CPU)
|
||||||
// would like to read something that somebody else wrote (ADC via DMA, in this case)
|
// would like to read something that somebody else wrote (ADC via DMA, in this case)
|
||||||
SCB_InvalidateDCache_by_Addr(reinterpret_cast<uint32_t*>(samples), sizeof(samples));
|
SCB_InvalidateDCache_by_Addr(reinterpret_cast<uint32_t*>(samples), sizeof(samples));
|
||||||
#endif
|
#endif /* STM32F7XX */
|
||||||
}
|
}
|
||||||
|
|
||||||
void AdcDevice::init(void) {
|
void AdcDevice::init(void) {
|
||||||
|
|
Loading…
Reference in New Issue