mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Add IntQ tests.
This commit is contained in:
parent
f689c709ab
commit
15881cdf39
|
@ -47,7 +47,11 @@ file_026=no
|
||||||
file_027=no
|
file_027=no
|
||||||
file_028=no
|
file_028=no
|
||||||
file_029=no
|
file_029=no
|
||||||
file_030=yes
|
file_030=no
|
||||||
|
file_031=no
|
||||||
|
file_032=no
|
||||||
|
file_033=no
|
||||||
|
file_034=yes
|
||||||
[FILE_INFO]
|
[FILE_INFO]
|
||||||
file_000=main.c
|
file_000=main.c
|
||||||
file_001=ParTest\ParTest.c
|
file_001=ParTest\ParTest.c
|
||||||
|
@ -62,31 +66,35 @@ file_009=..\Common\Minimal\flash.c
|
||||||
file_010=..\Common\Minimal\QPeek.c
|
file_010=..\Common\Minimal\QPeek.c
|
||||||
file_011=..\Common\Minimal\semtest.c
|
file_011=..\Common\Minimal\semtest.c
|
||||||
file_012=..\Common\Minimal\GenQTest.c
|
file_012=..\Common\Minimal\GenQTest.c
|
||||||
file_013=..\Common\Minimal\integer.c
|
file_013=..\Common\Minimal\blocktim.c
|
||||||
file_014=..\Common\Minimal\blocktim.c
|
file_014=lcd.c
|
||||||
file_015=lcd.c
|
file_015=serial\serial.c
|
||||||
file_016=serial\serial.c
|
file_016=..\Common\Minimal\comtest.c
|
||||||
file_017=..\Common\Minimal\comtest.c
|
file_017=serial\serial_isr.S
|
||||||
file_018=serial\serial_isr.S
|
file_018=timertest.c
|
||||||
file_019=timertest.c
|
file_019=timertest_isr.S
|
||||||
file_020=FreeRTOSConfig.h
|
file_020=..\Common\Minimal\IntQueue.c
|
||||||
file_021=..\..\Source\portable\MPLAB\PIC32MX\portmacro.h
|
file_021=IntQueueTimer.c
|
||||||
file_022=..\..\Source\include\portable.h
|
file_022=IntQueueTimer_isr.S
|
||||||
file_023=..\..\Source\include\task.h
|
file_023=printf-stdarg.c
|
||||||
file_024=..\..\Source\include\croutine.h
|
file_024=FreeRTOSConfig.h
|
||||||
file_025=..\..\Source\include\FreeRTOS.h
|
file_025=..\..\Source\portable\MPLAB\PIC32MX\portmacro.h
|
||||||
file_026=..\..\Source\include\list.h
|
file_026=..\..\Source\include\portable.h
|
||||||
file_027=..\..\Source\include\projdefs.h
|
file_027=..\..\Source\include\task.h
|
||||||
file_028=..\..\Source\include\queue.h
|
file_028=..\..\Source\include\croutine.h
|
||||||
file_029=..\..\Source\include\semphr.h
|
file_029=..\..\Source\include\FreeRTOS.h
|
||||||
file_030=PIC32MX_MPLAB.map
|
file_030=..\..\Source\include\list.h
|
||||||
|
file_031=..\..\Source\include\projdefs.h
|
||||||
|
file_032=..\..\Source\include\queue.h
|
||||||
|
file_033=..\..\Source\include\semphr.h
|
||||||
|
file_034=PIC32MX_MPLAB.map
|
||||||
[SUITE_INFO]
|
[SUITE_INFO]
|
||||||
suite_guid={14495C23-81F8-43F3-8A44-859C583D7760}
|
suite_guid={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
suite_state=
|
suite_state=
|
||||||
[TOOL_SETTINGS]
|
[TOOL_SETTINGS]
|
||||||
TS{CB0AF4B8-4022-429D-8F99-8A56782B2C6D}=--keep-locals --gdwarf-2
|
TS{CB0AF4B8-4022-429D-8F99-8A56782B2C6D}=--keep-locals --gdwarf-2
|
||||||
TS{9C698E0A-CBC9-4EFF-AE7D-B569F93E7322}=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
TS{9C698E0A-CBC9-4EFF-AE7D-B569F93E7322}=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TS{77F59DA1-3C53-4677-AC5F-A03EB0125170}=-o"$(BINDIR_)$(TARGETBASE).$(TARGETSUFFIX)" -Map="$(BINDIR_)$(TARGETBASE).map"
|
TS{77F59DA1-3C53-4677-AC5F-A03EB0125170}=--defsym=_min_heap_size=0 --defsym=_min_heap_size=0 -Map="$(BINDIR_)$(TARGETBASE).map" -o"$(BINDIR_)$(TARGETBASE).$(TARGETSUFFIX)" -O3
|
||||||
TS{0396C0A1-9052-4E4F-8B84-EF0162B1B4E9}=
|
TS{0396C0A1-9052-4E4F-8B84-EF0162B1B4E9}=
|
||||||
[INSTRUMENTED_TRACE]
|
[INSTRUMENTED_TRACE]
|
||||||
enable=0
|
enable=0
|
||||||
|
|
|
@ -2,268 +2,316 @@
|
||||||
MagicCookie={0b13fe8c-dfe0-40eb-8900-6712719559a7}
|
MagicCookie={0b13fe8c-dfe0-40eb-8900-6712719559a7}
|
||||||
Version=1.0
|
Version=1.0
|
||||||
[File000]
|
[File000]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\main.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\main.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File001]
|
[File001]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\ParTest.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\ParTest.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File002]
|
[File002]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\port.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\port.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File003]
|
[File003]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\list.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\list.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File004]
|
[File004]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\queue.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\queue.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File005]
|
[File005]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\tasks.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\tasks.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File006]
|
[File006]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\port_asm.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\port_asm.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}
|
LanguageToolID={92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=--keep-locals --gdwarf-2
|
ToolArgsString=--keep-locals --gdwarf-2
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File007]
|
[File007]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\RegisterTestTasks.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\RegisterTestTasks.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}
|
LanguageToolID={92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=--keep-locals --gdwarf-2
|
ToolArgsString=--keep-locals --gdwarf-2
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File008]
|
[File008]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\heap_2.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\heap_2.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File009]
|
[File009]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\flash.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\flash.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File010]
|
[File010]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\QPeek.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\QPeek.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File011]
|
[File011]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\semtest.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\semtest.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File012]
|
[File012]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\GenQTest.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\GenQTest.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File013]
|
[File013]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\integer.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\blocktim.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File014]
|
[File014]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\blocktim.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\lcd.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File015]
|
[File015]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\lcd.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\serial.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File016]
|
[File016]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\serial.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\comtest.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File017]
|
[File017]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\comtest.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\serial_isr.o
|
||||||
Folder=Intermediary
|
|
||||||
DeviceName=PIC32MX360F512L
|
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
|
||||||
SuiteArgsString=
|
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
|
||||||
TraceCmdString=
|
|
||||||
[File018]
|
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\serial_isr.o
|
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}
|
LanguageToolID={92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=--keep-locals --gdwarf-2
|
ToolArgsString=--keep-locals --gdwarf-2
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File019]
|
[File018]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\timertest.o
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\timertest.o
|
||||||
Folder=Intermediary
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -fomit-frame-pointer
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
|
TraceCmdString=
|
||||||
|
[File019]
|
||||||
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\timertest_isr.o
|
||||||
|
Folder=Intermediary
|
||||||
|
DeviceName=PIC32MX360F512L
|
||||||
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
|
LanguageToolID={92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}
|
||||||
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
||||||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
|
SuiteArgsString=
|
||||||
|
ToolArgsString=--keep-locals --gdwarf-2
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File020]
|
[File020]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\RTOSDemo.elf
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\IntQueue.o
|
||||||
Folder=Output
|
Folder=Intermediary
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={C68E5105-1196-4333-A0BF-3DC57271E614}
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-ld.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-o"$(BINDIR_)$(TARGETBASE).$(TARGETSUFFIX)" -Map="$(BINDIR_)$(TARGETBASE).map"
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[File021]
|
[File021]
|
||||||
Location=C:\Temp\RC\1\Demo\PIC32MX_MPLAB\RTOSDemo.hex
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\IntQueueTimer.o
|
||||||
|
Folder=Intermediary
|
||||||
|
DeviceName=PIC32MX360F512L
|
||||||
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
|
SuiteArgsString=
|
||||||
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
|
TraceCmdString=
|
||||||
|
[File022]
|
||||||
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\IntQueueTimer_isr.o
|
||||||
|
Folder=Intermediary
|
||||||
|
DeviceName=PIC32MX360F512L
|
||||||
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
|
LanguageToolID={92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}
|
||||||
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
||||||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
|
SuiteArgsString=
|
||||||
|
ToolArgsString=--keep-locals --gdwarf-2
|
||||||
|
TraceCmdString=
|
||||||
|
[File023]
|
||||||
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\printf-stdarg.o
|
||||||
|
Folder=Intermediary
|
||||||
|
DeviceName=PIC32MX360F512L
|
||||||
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
|
LanguageToolID={430F471F-7ECB-4852-A80D-DEF9A5C8E751}
|
||||||
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-gcc.exe
|
||||||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
|
SuiteArgsString=
|
||||||
|
ToolArgsString=-g -DMPLAB_PIC32MX_PORT -Wall -O3 -fomit-frame-pointer
|
||||||
|
TraceCmdString=
|
||||||
|
[File024]
|
||||||
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\RTOSDemo.elf
|
||||||
Folder=Output
|
Folder=Output
|
||||||
DeviceName=PIC32MX360F512L
|
DeviceName=PIC32MX360F512L
|
||||||
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
LanguageToolID={C68E5105-1196-4333-A0BF-3DC57271E614}
|
LanguageToolID={C68E5105-1196-4333-A0BF-3DC57271E614}
|
||||||
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-ld.exe
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-ld.exe
|
||||||
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\integer.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c||<obj>||<lib>||<lkr>||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
SuiteArgsString=
|
SuiteArgsString=
|
||||||
ToolArgsString=-o"$(BINDIR_)$(TARGETBASE).$(TARGETSUFFIX)" -Map="$(BINDIR_)$(TARGETBASE).map"
|
ToolArgsString=--defsym=_min_heap_size=0 --defsym=_min_heap_size=0 -Map="$(BINDIR_)$(TARGETBASE).map" -o"$(BINDIR_)$(TARGETBASE).$(TARGETSUFFIX)" -O3
|
||||||
|
TraceCmdString=
|
||||||
|
[File025]
|
||||||
|
Location=C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\PIC32MX_MPLAB\RTOSDemo.hex
|
||||||
|
Folder=Output
|
||||||
|
DeviceName=PIC32MX360F512L
|
||||||
|
LanguageToolSuiteID={14495C23-81F8-43F3-8A44-859C583D7760}
|
||||||
|
LanguageToolID={C68E5105-1196-4333-A0BF-3DC57271E614}
|
||||||
|
LanguageToolLocation=C:\Devtools\Microchip\MPLAB C32\bin\pic32-ld.exe
|
||||||
|
PPAD=$(BINDIR)||$(TMPDIR)||$(AINDIR)|..\..\Source\portable\MPLAB\PIC32MX;.||$(INCDIR)|.;.;..\common\include;..\..\source\portable\mplab\pic32mx;..\..\source\include||$(LIBDIR)||$(LKRDIR)||
|
||||||
|
SOLK=<src>|main.c|ParTest\ParTest.c|..\..\Source\portable\MPLAB\PIC32MX\port.c|..\..\Source\list.c|..\..\Source\queue.c|..\..\Source\tasks.c|..\..\Source\portable\MPLAB\PIC32MX\port_asm.S|RegisterTestTasks.s|..\..\Source\portable\MemMang\heap_2.c|..\Common\Minimal\flash.c|..\Common\Minimal\QPeek.c|..\Common\Minimal\semtest.c|..\Common\Minimal\GenQTest.c|..\Common\Minimal\blocktim.c|lcd.c|serial\serial.c|..\Common\Minimal\comtest.c|serial\serial_isr.S|timertest.c|timertest_isr.S|C:\E\Dev\FreeRTOS\WorkingCopy2\Demo\Common\Minimal\IntQueue.c|IntQueueTimer.c|IntQueueTimer_isr.S|printf-stdarg.c||<obj>||<lib>||<lkr>||
|
||||||
|
SuiteArgsString=
|
||||||
|
ToolArgsString=--defsym=_min_heap_size=0 --defsym=_min_heap_size=0 -Map="$(BINDIR_)$(TARGETBASE).map" -o"$(BINDIR_)$(TARGETBASE).$(TARGETSUFFIX)" -O3
|
||||||
TraceCmdString=
|
TraceCmdString=
|
||||||
[TOOL_LOC_STAMPS]
|
[TOOL_LOC_STAMPS]
|
||||||
tool_loc{92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
tool_loc{92E15EC6-5E91-4BF4-B5FA-C80AD2601AA7}=C:\Devtools\Microchip\MPLAB C32\bin\pic32-as.exe
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue