├── LICENSE ├── README.md └── Simulator_Linux ├── FreeRTOS_Kernel ├── croutine.c ├── include │ ├── FreeRTOS.h │ ├── StackMacros.h │ ├── croutine.h │ ├── deprecated_definitions.h │ ├── event_groups.h │ ├── list.h │ ├── message_buffer.h │ ├── mpu_prototypes.h │ ├── mpu_wrappers.h │ ├── portable.h │ ├── projdefs.h │ ├── queue.h │ ├── semphr.h │ ├── stack_macros.h │ ├── stdint.readme │ ├── stream_buffer.h │ ├── task.h │ └── timers.h ├── list.c ├── portable │ ├── GCC │ │ └── Posix │ │ │ ├── port.c │ │ │ └── portmacro.h │ ├── MemMang │ │ └── heap_3.c │ └── readme.txt ├── queue.c ├── subdir.mk └── tasks.c ├── Makefile ├── SConstruct ├── inc ├── FreeRTOSConfig.h └── main.h ├── src └── main.c └── subdir.mk /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/README.md -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/croutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/croutine.c -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/FreeRTOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/FreeRTOS.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/StackMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/StackMacros.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/croutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/croutine.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/deprecated_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/deprecated_definitions.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/event_groups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/event_groups.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/list.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/message_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/message_buffer.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/mpu_prototypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/mpu_prototypes.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/mpu_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/mpu_wrappers.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/portable.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/projdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/projdefs.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/queue.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/semphr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/semphr.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/stack_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/stack_macros.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/stdint.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/stdint.readme -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/stream_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/stream_buffer.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/task.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/include/timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/include/timers.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/list.c -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/portable/GCC/Posix/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/portable/GCC/Posix/port.c -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/portable/GCC/Posix/portmacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/portable/GCC/Posix/portmacro.h -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/portable/MemMang/heap_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/portable/MemMang/heap_3.c -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/portable/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/portable/readme.txt -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/queue.c -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/subdir.mk -------------------------------------------------------------------------------- /Simulator_Linux/FreeRTOS_Kernel/tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/FreeRTOS_Kernel/tasks.c -------------------------------------------------------------------------------- /Simulator_Linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/Makefile -------------------------------------------------------------------------------- /Simulator_Linux/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/SConstruct -------------------------------------------------------------------------------- /Simulator_Linux/inc/FreeRTOSConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/inc/FreeRTOSConfig.h -------------------------------------------------------------------------------- /Simulator_Linux/inc/main.h: -------------------------------------------------------------------------------- 1 | #define MAIN_VAL 5 -------------------------------------------------------------------------------- /Simulator_Linux/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/src/main.c -------------------------------------------------------------------------------- /Simulator_Linux/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazyskady/FreeRTOS_study/HEAD/Simulator_Linux/subdir.mk --------------------------------------------------------------------------------