diff options
Diffstat (limited to 'testhal/STM32/STM32F7xx/SPI/main.c')
-rw-r--r-- | testhal/STM32/STM32F7xx/SPI/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F7xx/SPI/main.c b/testhal/STM32/STM32F7xx/SPI/main.c index 411020808..90001f1c2 100644 --- a/testhal/STM32/STM32F7xx/SPI/main.c +++ b/testhal/STM32/STM32F7xx/SPI/main.c @@ -29,6 +29,7 @@ * Maximum speed SPI configuration (27MHz, CPHA=0, CPOL=0, MSb first).
*/
static const SPIConfig hs_spicfg = {
+ false,
NULL,
GPIOB,
GPIOB_ARD_D15,
@@ -40,6 +41,7 @@ static const SPIConfig hs_spicfg = { * Low speed SPI configuration (421.875kHz, CPHA=0, CPOL=0, MSb first).
*/
static const SPIConfig ls_spicfg = {
+ false,
NULL,
GPIOB,
GPIOB_ARD_D14,
|