diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-11-01 15:44:30 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-11-01 15:44:30 +0000 |
commit | d37f6cb1f3cac35b1f7f7373062fddb638707570 (patch) | |
tree | e81bc626c722cd995fae688f8605a23e5db1aecc /testhal/STM32/STM32F1xx/RTC | |
parent | 96f976382d7b94911dac7bea9477b3e2bc560408 (diff) | |
download | ChibiOS-d37f6cb1f3cac35b1f7f7373062fddb638707570.tar.gz ChibiOS-d37f6cb1f3cac35b1f7f7373062fddb638707570.tar.bz2 ChibiOS-d37f6cb1f3cac35b1f7f7373062fddb638707570.zip |
RTCv1. Time converstion functions moved to rtc.c(h). Chrtclib deleted.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7443 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/STM32F1xx/RTC')
-rw-r--r-- | testhal/STM32/STM32F1xx/RTC/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/testhal/STM32/STM32F1xx/RTC/Makefile b/testhal/STM32/STM32F1xx/RTC/Makefile index 88272a9de..7cd4bc0cb 100644 --- a/testhal/STM32/STM32F1xx/RTC/Makefile +++ b/testhal/STM32/STM32F1xx/RTC/Makefile @@ -5,7 +5,7 @@ # Compiler options here. ifeq ($(USE_OPT),) - USE_OPT = -O0 -ggdb -fomit-frame-pointer -falign-functions=16 + USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16 endif # C specific options here (added to USE_OPT). @@ -101,8 +101,7 @@ CSRC = $(PORTSRC) \ $(OSALSRC) \ $(PLATFORMSRC) \ $(BOARDSRC) \ - main.c \ - $(CHIBIOS)/os/various/chrtclib.c + main.c # C++ sources that can be compiled in ARM or THUMB mode depending on the global # setting. |