aboutsummaryrefslogtreecommitdiffstats
path: root/testhal
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-11-14 09:24:25 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-11-14 09:24:25 +0000
commit27ad46cdfdfd3565b0376a96a3068839a3c63250 (patch)
tree7559f401151b8415b831cef372481c3fa08e96cf /testhal
parent6e0f6445b67755c1e39495f351a67eb718332e76 (diff)
downloadChibiOS-27ad46cdfdfd3565b0376a96a3068839a3c63250.tar.gz
ChibiOS-27ad46cdfdfd3565b0376a96a3068839a3c63250.tar.bz2
ChibiOS-27ad46cdfdfd3565b0376a96a3068839a3c63250.zip
Minor changes to MFS project.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12421 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'testhal')
-rw-r--r--testhal/STM32/multi/WSPI-MFS/.project7
-rw-r--r--testhal/STM32/multi/WSPI-MFS/main.c2
-rw-r--r--testhal/STM32/multi/WSPI-MFS/make/stm32l4r9_discovery.make2
3 files changed, 3 insertions, 8 deletions
diff --git a/testhal/STM32/multi/WSPI-MFS/.project b/testhal/STM32/multi/WSPI-MFS/.project
index 9b26e02af..1ea006f99 100644
--- a/testhal/STM32/multi/WSPI-MFS/.project
+++ b/testhal/STM32/multi/WSPI-MFS/.project
@@ -82,12 +82,7 @@
<locationURI>CHIBIOS/os</locationURI>
</link>
<link>
- <name>test/lib</name>
- <type>2</type>
- <locationURI>CHIBIOS/test/lib</locationURI>
- </link>
- <link>
- <name>test/mfs</name>
+ <name>test</name>
<type>2</type>
<locationURI>CHIBIOS/test/mfs</locationURI>
</link>
diff --git a/testhal/STM32/multi/WSPI-MFS/main.c b/testhal/STM32/multi/WSPI-MFS/main.c
index 30c7a9c89..73dcfb065 100644
--- a/testhal/STM32/multi/WSPI-MFS/main.c
+++ b/testhal/STM32/multi/WSPI-MFS/main.c
@@ -74,7 +74,7 @@ int main(void) {
halInit();
chSysInit();
- /*Board-dependent GPIO setup code.*/
+ /* Board-dependent GPIO setup code.*/
portab_setup();
/* Starting a serial port for test report output.*/
diff --git a/testhal/STM32/multi/WSPI-MFS/make/stm32l4r9_discovery.make b/testhal/STM32/multi/WSPI-MFS/make/stm32l4r9_discovery.make
index 47345c16f..64f290378 100644
--- a/testhal/STM32/multi/WSPI-MFS/make/stm32l4r9_discovery.make
+++ b/testhal/STM32/multi/WSPI-MFS/make/stm32l4r9_discovery.make
@@ -5,7 +5,7 @@
# Compiler options here.
ifeq ($(USE_OPT),)
- USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16
+ USE_OPT = -O2 -gdwarf-3 -fomit-frame-pointer -falign-functions=16
endif
# C specific options here (added to USE_OPT).