]> git.sur5r.net Git - freertos/commit
In the SAM4S demo, moved FreeRTOS into the ASF/thirdparty directory.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 5 Jul 2012 09:41:37 +0000 (09:41 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Thu, 5 Jul 2012 09:41:37 +0000 (09:41 +0000)
commit8c971926f1b71dcc04acf93e80cd097c69045942
tree3fd6f2bd4cda97707dadb80359030c061406a015
parente873d5809c3c10be3ce2c6c5962014891bce3ef7
In the SAM4S demo, moved FreeRTOS into the ASF/thirdparty directory.
Changed some of the compiler warning configuration.

git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1756 1d2547de-c912-0410-9cb9-b8ca96c0e9e2
40 files changed:
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/RTOSDemo.atsuo
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/RTOSDemo.cproj
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/FreeRTOS.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/StackMacros.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/croutine.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/list.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/mpu_wrappers.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/portable.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/projdefs.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/queue.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/semphr.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/task.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/include/timers.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/list.c [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/portable/GCC/ARM_CM3/port.c [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/portable/GCC/ARM_CM3/portmacro.h [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/portable/MemMang/heap_2.c [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/queue.c [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/tasks.c [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOS/timers.c [deleted file]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/FreeRTOSConfig.h
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/ParTest.c
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/FreeRTOS.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/StackMacros.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/croutine.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/list.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/mpu_wrappers.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/portable.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/projdefs.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/queue.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/semphr.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/task.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/include/timers.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/list.c [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/portable/GCC/ARM_CM3/port.c [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/portable/GCC/ARM_CM3/portmacro.h [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/portable/MemMang/heap_2.c [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/queue.c [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/tasks.c [new file with mode: 0644]
Demo/CORTEX_M4_ATSAM4S_AVR_Studio/src/asf/thirdparty/FreeRTOS/timers.c [new file with mode: 0644]