Fixed bug #1033.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12849 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
parent
e81bcef2be
commit
ae2fa9e9c5
|
@ -70,7 +70,7 @@ SECTIONS
|
||||||
PROVIDE(__fini_array_end = .);
|
PROVIDE(__fini_array_end = .);
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.text : ALIGN(16)
|
.text : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
|
|
|
@ -70,7 +70,7 @@ SECTIONS
|
||||||
PROVIDE(__fini_array_end = .);
|
PROVIDE(__fini_array_end = .);
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.text : ALIGN(16)
|
.text : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
|
|
|
@ -35,7 +35,7 @@ SECTIONS
|
||||||
__fini_array_end = .;
|
__fini_array_end = .;
|
||||||
} > XTORS_FLASH AT > XTORS_FLASH_LMA
|
} > XTORS_FLASH AT > XTORS_FLASH_LMA
|
||||||
|
|
||||||
.text : ALIGN(4)
|
.text : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
__text_base = .;
|
__text_base = .;
|
||||||
*(.text)
|
*(.text)
|
||||||
|
|
|
@ -57,14 +57,14 @@ SECTIONS
|
||||||
PROVIDE(__fini_array_end = .);
|
PROVIDE(__fini_array_end = .);
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.text_vle : ALIGN(16)
|
.text_vle : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
*(.text_vle)
|
*(.text_vle)
|
||||||
*(.text_vle.*)
|
*(.text_vle.*)
|
||||||
*(.gnu.linkonce.t_vle.*)
|
*(.gnu.linkonce.t_vle.*)
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.text : ALIGN(16)
|
.text : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
|
|
|
@ -54,14 +54,14 @@ SECTIONS
|
||||||
PROVIDE(__fini_array_end = .);
|
PROVIDE(__fini_array_end = .);
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.text_vle : ALIGN(16)
|
.text_vle : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
*(.text_vle)
|
*(.text_vle)
|
||||||
*(.text_vle.*)
|
*(.text_vle.*)
|
||||||
*(.gnu.linkonce.t_vle.*)
|
*(.gnu.linkonce.t_vle.*)
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.text : ALIGN(16)
|
.text : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
|
|
|
@ -54,14 +54,14 @@ SECTIONS
|
||||||
PROVIDE(__fini_array_end = .);
|
PROVIDE(__fini_array_end = .);
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.text_vle : ALIGN(16)
|
.text_vle : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
*(.text_vle)
|
*(.text_vle)
|
||||||
*(.text_vle.*)
|
*(.text_vle.*)
|
||||||
*(.gnu.linkonce.t_vle.*)
|
*(.gnu.linkonce.t_vle.*)
|
||||||
} > flash
|
} > flash
|
||||||
|
|
||||||
.text : ALIGN(16)
|
.text : ALIGN_WITH_INPUT
|
||||||
{
|
{
|
||||||
*(.text)
|
*(.text)
|
||||||
*(.text.*)
|
*(.text.*)
|
||||||
|
|
|
@ -101,6 +101,8 @@
|
||||||
- HAL: Added a new interface for range-finder devices (used by EX).
|
- HAL: Added a new interface for range-finder devices (used by EX).
|
||||||
- HAL: Added mcuconf.h updater tool for STM32F407 (backported to 19.1.1).
|
- HAL: Added mcuconf.h updater tool for STM32F407 (backported to 19.1.1).
|
||||||
- NIL: Integrated NIL 4.0.
|
- NIL: Integrated NIL 4.0.
|
||||||
|
- FIX: Fixed GCC scatter files alignment problem (bug #1033)
|
||||||
|
(backported to 19.1.3)(backported to 18.2.3).
|
||||||
- FIX: Fixed long intervals fail when interval type is larger than time type
|
- FIX: Fixed long intervals fail when interval type is larger than time type
|
||||||
(bug #1031)(backported to 19.1.3)(backported to 18.2.3).
|
(bug #1031)(backported to 19.1.3)(backported to 18.2.3).
|
||||||
- FIX: Fixed Round Robin check missing when in tick-less mode (bug #1030)
|
- FIX: Fixed Round Robin check missing when in tick-less mode (bug #1030)
|
||||||
|
|
Loading…
Reference in New Issue