From a8693baa481e1c4d91379af08bbc9f459b1b4d56 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Wed, 10 Jan 2018 13:36:09 +0000 Subject: SPIv1 and SPIv2 circular mode added. Rework of RCC files and all dependencies inside STM32 drivers. Documentation fixes in some HAL modules. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11247 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- testhal/STM32/STM32L1xx/SPI/main.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'testhal/STM32/STM32L1xx/SPI/main.c') diff --git a/testhal/STM32/STM32L1xx/SPI/main.c b/testhal/STM32/STM32L1xx/SPI/main.c index f70d4f7c8..cac88f4f6 100644 --- a/testhal/STM32/STM32L1xx/SPI/main.c +++ b/testhal/STM32/STM32L1xx/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 (256kHz, CPHA=0, CPOL=0, MSb first). */ static const SPIConfig ls_spicfg = { + false, NULL, GPIOB, 12, -- cgit v1.2.3