diff options
Diffstat (limited to 'testhal/STM32/STM32L0xx/SPI/main.c')
-rw-r--r-- | testhal/STM32/STM32L0xx/SPI/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testhal/STM32/STM32L0xx/SPI/main.c b/testhal/STM32/STM32L0xx/SPI/main.c index 6c5de1173..7cacee323 100644 --- a/testhal/STM32/STM32L0xx/SPI/main.c +++ b/testhal/STM32/STM32L0xx/SPI/main.c @@ -21,6 +21,7 @@ * Maximum speed SPI configuration (16MHz, CPHA=0, CPOL=0, MSb first).
*/
static const SPIConfig hs_spicfg = {
+ false,
NULL,
GPIOB,
12,
@@ -32,6 +33,7 @@ static const SPIConfig hs_spicfg = { * Low speed SPI configuration (250kHz, CPHA=0, CPOL=0, MSb first).
*/
static const SPIConfig ls_spicfg = {
+ false,
NULL,
GPIOB,
12,
|