mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-20 10:08:33 -04:00
Final check in before tagging V9.0.0.
This commit is contained in:
parent
2bd7884ace
commit
6c975cd46a
13 changed files with 10 additions and 2196 deletions
|
@ -85,12 +85,16 @@
|
|||
* !!! IMPORTANT NOTE !!!
|
||||
* The GCC libraries that ship with the Xilinx SDK make use of the floating
|
||||
* point registers. To avoid this causing corruption it is necessary to avoid
|
||||
* their use. For this reason main.c contains very basic C implementations of
|
||||
* the standard C library functions memset(), memcpy() and memcmp(), which are
|
||||
* are used by FreeRTOS itself. Defining these functions in the project
|
||||
* prevents the linker pulling them in from the library. Any other standard C
|
||||
* library functions that are used by the application must likewise be defined
|
||||
* in C.
|
||||
* their use unless a task has been given a floating point context. See
|
||||
* http://www.freertos.org/Using-FreeRTOS-on-Cortex-A-Embedded-Processors.html
|
||||
* for information on how to give a task a floating point context, and how to
|
||||
* handle floating point operations in interrupts. As this demo does not give
|
||||
* all tasks a floating point context main.c contains very basic C
|
||||
* implementations of the standard C library functions memset(), memcpy() and
|
||||
* memcmp(), which are are used by FreeRTOS itself. Defining these functions in
|
||||
* the project prevents the linker pulling them in from the library. Any other
|
||||
* standard C library functions that are used by the application must likewise
|
||||
* be defined in C.
|
||||
*
|
||||
* ENSURE TO READ THE DOCUMENTATION PAGE FOR THIS PORT AND DEMO APPLICATION ON
|
||||
* THE http://www.FreeRTOS.org WEB SITE FOR FULL INFORMATION ON USING THIS DEMO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue