modified: Core/Src/can.c modified: Core/Src/crc.c modified: Core/Src/freertos.c modified: Core/Src/i2c.c modified: Core/Src/rng.c modified: Core/Src/spi.c modified: Core/Src/stm32f4xx_hal_msp.c modified: Core/Src/tim.c modified: Core/Src/usart.c modified: DevC.ioc new file: MDK-ARM/.vscode/c_cpp_properties.json new file: MDK-ARM/.vscode/keil-assistant.log new file: MDK-ARM/.vscode/uv4.log.lock new file: MDK-ARM/DevC.uvoptx new file: MDK-ARM/DevC.uvprojx new file: MDK-ARM/DevC/DevC.axf new file: MDK-ARM/DevC/DevC.hex new file: MDK-ARM/startup_stm32f407xx.s new file: Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F/port.c new file: Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F/portmacro.h modified: USB_DEVICE/App/usbd_desc.c modified: User/task/ai.c |
||
|---|---|---|
| .. | ||
| CMSIS_RTOS_V2 | ||
| include | ||
| portable | ||
| croutine.c | ||
| event_groups.c | ||
| History.txt | ||
| LICENSE | ||
| list.c | ||
| queue.c | ||
| readme.txt | ||
| st_readme.txt | ||
| stream_buffer.c | ||
| tasks.c | ||
| timers.c | ||
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.