git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9549 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Rocco Marco Guglielmi 2016-06-01 10:59:55 +00:00
parent 29e4e97d76
commit 78f63bd88d
3 changed files with 18 additions and 7 deletions

View File

@ -114,15 +114,21 @@
- RT: Merged RT4.
- NIL: Merged NIL2.
- NIL: Added STM32F7 demo.
- HAL: Fixed wrong comments in STM32F4xx GPT demo (bug #748).
- HAL: Fixed LTO settings and added board folder in STM32F4xx-USB_CDC demo
(bug #749)(backported to 3.0.6 and 16.1.5).
- HAL: Fixed wrong comments in STM32F4xx GPT demo (bug #748)
(backported to 2.6.10, 3.0.6 and 16.1.5).
- HAL: Fixed wrong comments and indents in STM32F7xx-GPT-ADC and
STM32L4-GPT-ADC demos (bug #747).
STM32L4-GPT-ADC demos (bug #747) (backported to 16.1.5).
- HAL: Fixed wrong comments and indent in STM32F4xx and STM32F7xx
hal_lld.h (bug #746).
- HAL: Removed wrong SAI masks in STM32F4xx hal_lld.h (bug #745).
hal_lld.h (bug #746)(backported to 2.6.10, 3.0.6 and 16.1.5).
- HAL: Removed wrong SAI masks in STM32F4xx hal_lld.h (bug #745)
(backported to 3.0.6 and 16.1.5).
- HAL: Fixed wrong mask placement in STM32F4xx hal_lld.h (bug #744).
- HAL: Fixed wrong indent in STM32F4xx hal_lld.h (bug #743).
- HAL: Removed unused macros in STM32F7xx and STM32F4xx hal_lld.h (bug #742).
- HAL: Fixed wrong indent in STM32F4xx hal_lld.h (bug #743)
(backported to 2.6.10, 3.0.6 and 16.1.5).
- HAL: Removed unused macros in STM32F7xx and STM32F4xx hal_lld.h (bug #742)
(backported to 2.6.10, 3.0.6 and 16.1.5).
- HAL: Fixed Doxygen related macros in STM32F7xx, STM32L0xx and STM32L4xx
lld files (bug #741).
- HAL: Fixed bug in VREF enable/disable functions in ADCv3 driver

View File

@ -24,6 +24,11 @@
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
</natures>
<linkedResources>
<link>
<name>board</name>
<type>2</type>
<locationURI>CHIBIOS/os/hal/boards/ST_STM32F4_DISCOVERY</locationURI>
</link>
<link>
<name>os</name>
<type>2</type>

View File

@ -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).