git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@163 35acf78f-673a-0410-8e92-d51de3d6d3f4
parent
715ee36820
commit
e9fd3ba813
|
@ -64,6 +64,8 @@ SECTIONS
|
|||
_data = .;
|
||||
*(.data)
|
||||
. = ALIGN(4);
|
||||
*(.ramtext)
|
||||
. = ALIGN(4);
|
||||
_edata = .;
|
||||
} > ram AT > flash
|
||||
|
||||
|
|
|
@ -64,6 +64,8 @@ SECTIONS
|
|||
_data = .;
|
||||
*(.data)
|
||||
. = ALIGN(4);
|
||||
*(.ramtext)
|
||||
. = ALIGN(4);
|
||||
_edata = .;
|
||||
} > ram AT > flash
|
||||
|
||||
|
|
|
@ -39,6 +39,12 @@ AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet.
|
|||
*** Releases ***
|
||||
*****************************************************************************
|
||||
|
||||
*** 0.5.1 ***
|
||||
- Added to the ARM demos load scripts the capability to load code in RAM
|
||||
instead flash, the function must be marked as:
|
||||
__attribute__((section(".ramtext")))
|
||||
The option -mlong-calls should be specified in the makefile too.
|
||||
|
||||
*** 0.5.0 ***
|
||||
- NEW: Mutexes, the new mechanism provides a complete implementation of the
|
||||
"priority inheritance" algorithm as a tool for work around the priority
|
||||
|
|
Loading…
Reference in New Issue