+++ /dev/null
-REM Copies all the required files from their location within the standard\r
-REM FreeRTOS directory structure to under the Eclipse project directory.\r
-REM This permits the Eclipse project to be used in 'managed' mode and without\r
-REM having to setup any linked resources.\r
-\r
-REM Have the files already been copied?\r
-IF EXIST FreeRTOS Goto END\r
-\r
- REM Create the required directory structure.\r
- MD FreeRTOS\r
- MD FreeRTOS\include \r
- MD FreeRTOS\portable\GCC\ARM_CM3\r
- MD FreeRTOS\portable\MemMang \r
- MD "Common Demo Tasks"\r
- MD "Common Demo Tasks\include"\r
- \r
- REM Copy the core kernel files.\r
- copy ..\..\..\Source\tasks.c FreeRTOS\r
- copy ..\..\..\Source\queue.c FreeRTOS\r
- copy ..\..\..\Source\list.c FreeRTOS\r
- \r
- REM Copy the common header files\r
-\r
- copy ..\..\..\Source\include\*.* FreeRTOS\include\r
- \r
- REM Copy the portable layer files\r
- copy ..\..\..\Source\portable\GCC\ARM_CM3\*.* FreeRTOS\portable\GCC\ARM_CM3\r
- \r
- REM Copy the basic memory allocation files\r
- copy ..\..\..\Source\portable\MemMang\*.* FreeRTOS\portable\MemMang\r
-\r
- REM Copy the files that define the common demo tasks.\r
- copy ..\..\Common\minimal\BlockQ.c "Common Demo Tasks"\r
- copy ..\..\Common\minimal\blocktim.c "Common Demo Tasks"\r
- copy ..\..\Common\minimal\flash.c "Common Demo Tasks"\r
- copy ..\..\Common\minimal\GenQTest.c "Common Demo Tasks"\r
- copy ..\..\Common\minimal\integer.c "Common Demo Tasks"\r
- copy ..\..\Common\minimal\PollQ.c "Common Demo Tasks"\r
- copy ..\..\Common\minimal\QPeek.c "Common Demo Tasks"\r
- copy ..\..\Common\minimal\recmutex.c "Common Demo Tasks"\r
- copy ..\..\Common\minimal\semtest.c "Common Demo Tasks"\r
- \r
- REM Copy the common demo file headers.\r
- copy ..\..\Common\include\*.* "Common Demo Tasks\include"\r
- \r
-: END
\ No newline at end of file