This commit is contained in:
parent
e4f872da35
commit
588ce43297
|
@ -174,10 +174,16 @@ void setBoardDefaultConfiguration(void) {
|
||||||
* @todo Add your board-specific code, if any.
|
* @todo Add your board-specific code, if any.
|
||||||
*/
|
*/
|
||||||
void setSdCardConfigurationOverrides(void) {
|
void setSdCardConfigurationOverrides(void) {
|
||||||
engineConfiguration->sdCardSpiDevice = SPI_DEVICE_2;
|
engineConfiguration->sdCardSpiDevice = SPI_DEVICE_3;
|
||||||
engineConfiguration->spi2mosiPin = GPIOB_15;
|
|
||||||
engineConfiguration->spi2misoPin = GPIOB_14;
|
engineConfiguration->spi3mosiPin = GPIOC_12;
|
||||||
engineConfiguration->spi2sckPin = GPIOB_13;
|
engineConfiguration->spi3misoPin = GPIOC_11;
|
||||||
engineConfiguration->sdCardCsPin = GPIOB_12;
|
engineConfiguration->spi3sckPin = GPIOC_10;
|
||||||
CONFIG(is_enabled_spi_2) = true;
|
engineConfiguration->sdCardCsPin = GPIOA_15;
|
||||||
|
|
||||||
|
// engineConfiguration->spi2mosiPin = GPIOB_15;
|
||||||
|
// engineConfiguration->spi2misoPin = GPIOB_14;
|
||||||
|
// engineConfiguration->spi2sckPin = GPIOB_13;
|
||||||
|
// engineConfiguration->sdCardCsPin = GPIOB_12;
|
||||||
|
CONFIG(is_enabled_spi_3) = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue