* e67 no serial

* s
This commit is contained in:
Matthew Kennedy 2022-06-01 12:09:35 -07:00 committed by GitHub
parent fae923bc11
commit d4ed8c2dc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -12,6 +12,9 @@ DDEFS += -DFIRMWARE_ID=\"hellenE67\" $(VAR_DEF_ENGINE_TYPE)
DDEFS += -DEFI_SOFTWARE_KNOCK=TRUE -DSTM32_ADC_USE_ADC3=TRUE
DDEFS += -DHAL_TRIGGER_USE_PAL=TRUE
# No hardware serial TS
DDEFS += -DTS_NO_PRIMARY=1
include $(BOARDS_DIR)/hellen/hellen-common144.mk

View File

@ -159,8 +159,6 @@ void setBoardDefaultConfiguration() {
* @todo Add your board-specific code, if any.
*/
void setSdCardConfigurationOverrides() {
/*
* todo: what SPI does this HW use? also we have a popular "uart 3 conflict with spi 2"
engineConfiguration->sdCardSpiDevice = SPI_DEVICE_2;
engineConfiguration->spi2mosiPin = H_SPI2_MOSI;
@ -168,5 +166,4 @@ void setSdCardConfigurationOverrides() {
engineConfiguration->spi2sckPin = H_SPI2_SCK;
engineConfiguration->sdCardCsPin = H_SPI2_CS;
engineConfiguration->is_enabled_spi_2 = true;
*/
}