diff options
Diffstat (limited to 'testhal/STM32/STM32F1xx/SPI/main.c')
-rw-r--r-- | testhal/STM32/STM32F1xx/SPI/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F1xx/SPI/main.c b/testhal/STM32/STM32F1xx/SPI/main.c index 1c510fef0..691c83b51 100644 --- a/testhal/STM32/STM32F1xx/SPI/main.c +++ b/testhal/STM32/STM32F1xx/SPI/main.c @@ -21,6 +21,7 @@ * Maximum speed SPI configuration (18MHz, CPHA=0, CPOL=0, MSb first).
*/
static const SPIConfig hs_spicfg = {
+ false,
NULL,
GPIOA,
GPIOA_SPI1NSS,
@@ -32,6 +33,7 @@ static const SPIConfig hs_spicfg = { * Low speed SPI configuration (281.250kHz, CPHA=0, CPOL=0, MSb first).
*/
static const SPIConfig ls_spicfg = {
+ false,
NULL,
GPIOA,
GPIOA_SPI1NSS,
|