test/freetest/Middlewares/Third_Party/FreeRTOS/Source
gjf ed9c95f2c8 chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件
本次提交新增了完整的CMSIS-DSP/CMSIS-NN测试与示例代码、STM32F1驱动文件、FreeRTOS中间件,同时添加了CAN IAP上位机的打包脚本、配置文件与编译产物,以及工程的.gitignore忽略规则和相关测试资源文件。
2026-08-10 13:53:54 +08:00
..
CMSIS_RTOS_V2 chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
include chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
portable chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
History.txt chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
LICENSE chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
croutine.c chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
event_groups.c chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
list.c chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
queue.c chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
readme.txt chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
st_readme.txt chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
stream_buffer.c chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
tasks.c chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08:00
timers.c chore: 提交项目新增的大量依赖文件、测试代码与打包工具相关文件 2026-08-10 13:53:54 +08: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.