Arduino_STM32/STM32F1/libraries/FreeRTOS821/utility
Roger Clark 88d2457f30 STM32F1 core: Implemented changes already made to the GD32F1 core to use F_CPU instead of hard coded values for 72000000 and (F_CPU -1) instead of 71999999 and to replace other hard coded values related to the clock freqency. Also updated the code so that the USB clock was disabled in setup_clock_prescalers to allow it to be changed in that function during initialisation, in case altermative prescaler values for USB are required, e.g. for operation at 48Mhz 2015-09-06 07:51:40 +10:00
..
MemMang Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
FreeRTOS.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
FreeRTOSConfig.h STM32F1 core: Implemented changes already made to the GD32F1 core to use F_CPU instead of hard coded values for 72000000 and (F_CPU -1) instead of 71999999 and to replace other hard coded values related to the clock freqency. Also updated the code so that the USB clock was disabled in setup_clock_prescalers to allow it to be changed in that function during initialisation, in case altermative prescaler values for USB are required, e.g. for operation at 48Mhz 2015-09-06 07:51:40 +10:00
StackMacros.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
croutine.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
croutine.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
deprecated_definitions.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
event_groups.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
event_groups.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
heap_1.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
list.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
list.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
mpu_wrappers.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
port.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
portable.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
portmacro.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
projdefs.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
queue.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
queue.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
readme.txt Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
semphr.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
stdint.readme Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
task.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
tasks.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
timers.c Still part of the RTOS commit 2015-05-21 23:36:16 -05:00
timers.h Still part of the RTOS commit 2015-05-21 23:36:16 -05:00

readme.txt

Each real time kernel port consists of three files that contain the core kernel
components and are common to every port, and one or more files that are 
specific to a particular microcontroller and or compiler.

+ The FreeRTOS/Source directory contains the three files that are common to 
every port - list.c, queue.c and tasks.c.  The kernel is contained within these 
three files.  croutine.c implements the optional co-routine functionality - which
is normally only used on very memory limited systems.

+ The FreeRTOS/Source/Portable directory contains the files that are specific to 
a particular microcontroller and or compiler.

+ The FreeRTOS/Source/include directory contains the real time kernel header 
files.

See the readme file in the FreeRTOS/Source/Portable directory for more 
information.