Fix ATMega port demos (#1060)

* Fix ATMEGA port demos

* Remove GCC folder from proj file
This commit is contained in:
kar-rahul-aws 2023-08-24 00:00:58 +05:30 committed by GitHub
parent 20b6c13c07
commit 4e2a02323b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 93 additions and 90 deletions

View file

@ -111,7 +111,7 @@ For other frequency values, update clock_config.h with your own settings. */
#define INCLUDE_vTaskDelayUntil 1 #define INCLUDE_vTaskDelayUntil 1
#define INCLUDE_vTaskDelay 1 #define INCLUDE_vTaskDelay 1
#define INCLUDE_xTaskGetSchedulerState 0 #define INCLUDE_xTaskGetSchedulerState 0
#define INCLUDE_xTaskGetCurrentTaskHandle 0 #define INCLUDE_xTaskGetCurrentTaskHandle 1
#define INCLUDE_uxTaskGetStackHighWaterMark 0 #define INCLUDE_uxTaskGetStackHighWaterMark 0
#define INCLUDE_xTaskGetIdleTaskHandle 0 #define INCLUDE_xTaskGetIdleTaskHandle 0
#define INCLUDE_eTaskGetState 0 #define INCLUDE_eTaskGetState 0

View file

@ -118,7 +118,7 @@
<Value>../../../../Source</Value> <Value>../../../../Source</Value>
<Value>../../../../Source/include</Value> <Value>../../../../Source/include</Value>
<Value>../../../../Source/portable/MemMang</Value> <Value>../../../../Source/portable/MemMang</Value>
<Value>../../../../Source/portable/GCC/AVR_Mega0</Value> <Value>../../../../Source/portable/ThirdParty/Partner-Supported-Ports/GCC/AVR_Mega0</Value>
<Value>../../../Common/include</Value> <Value>../../../Common/include</Value>
</ListValues> </ListValues>
</avrgcc.compiler.directories.IncludePaths> </avrgcc.compiler.directories.IncludePaths>
@ -187,17 +187,17 @@
<SubType>compile</SubType> <SubType>compile</SubType>
<Link>Source\portable\MemMang\heap_1.c</Link> <Link>Source\portable\MemMang\heap_1.c</Link>
</Compile> </Compile>
<Compile Include="..\..\..\Source\portable\GCC\AVR_Mega0\port.c"> <Compile Include="..\..\..\Source\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_Mega0\port.c">
<SubType>compile</SubType> <SubType>compile</SubType>
<Link>Source\portable\GCC\AVR_Mega0\port.c</Link> <Link>Source\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_Mega0\port.c</Link>
</Compile> </Compile>
<Compile Include="..\..\..\Source\portable\GCC\AVR_Mega0\portmacro.h"> <Compile Include="..\..\..\Source\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_Mega0\portmacro.h">
<SubType>compile</SubType> <SubType>compile</SubType>
<Link>Source\portable\GCC\AVR_Mega0\portmacro.h</Link> <Link>Source\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_Mega0\portmacro.h</Link>
</Compile> </Compile>
<Compile Include="..\..\..\Source\portable\GCC\AVR_Mega0\porthardware.h"> <Compile Include="..\..\..\Source\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_Mega0\porthardware.h">
<SubType>compile</SubType> <SubType>compile</SubType>
<Link>Source\portable\GCC\AVR_Mega0\porthardware.h</Link> <Link>Source\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_Mega0\porthardware.h</Link>
</Compile> </Compile>
<Compile Include="..\..\..\Source\include\atomic.h"> <Compile Include="..\..\..\Source\include\atomic.h">
<SubType>compile</SubType> <SubType>compile</SubType>
@ -357,9 +357,10 @@
<Folder Include="Source" /> <Folder Include="Source" />
<Folder Include="Source\include" /> <Folder Include="Source\include" />
<Folder Include="Source\portable" /> <Folder Include="Source\portable" />
<Folder Include="Source\portable\GCC" /> <Folder Include="Source\portable\ThirdParty\" />
<Folder Include="Source\portable\GCC\AVR_Mega0" /> <Folder Include="Source\portable\ThirdParty\Partner-Supported-Ports\" />
<Folder Include="Source\portable\GCC\AVR_Mega0\" /> <Folder Include="Source\portable\ThirdParty\Partner-Supported-Ports\GCC\" />
<Folder Include="Source\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_Mega0\" />
<Folder Include="Source\portable\MemMang" /> <Folder Include="Source\portable\MemMang" />
<Folder Include="ParTest\" /> <Folder Include="ParTest\" />
<Folder Include="serial\" /> <Folder Include="serial\" />

View file

@ -369,7 +369,9 @@
<Folder Include="freeRTOS\" /> <Folder Include="freeRTOS\" />
<Folder Include="freeRTOS\include" /> <Folder Include="freeRTOS\include" />
<Folder Include="freeRTOS\portable" /> <Folder Include="freeRTOS\portable" />
<Folder Include="freeRTOS\portable\GCC" /> <Folder Include="freeRTOS\portable\ThirdParty\" />
<Folder Include="freeRTOS\portable\ThirdParty\Partner-Supported-Ports\" />
<Folder Include="freeRTOS\portable\ThirdParty\Partner-Supported-Ports\GCC\" />
<Folder Include="freeRTOS\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_AVRDx" /> <Folder Include="freeRTOS\portable\ThirdParty\Partner-Supported-Ports\GCC\AVR_AVRDx" />
<Folder Include="freeRTOS\portable\MemMang" /> <Folder Include="freeRTOS\portable\MemMang" />
<Folder Include="serial" /> <Folder Include="serial" />