mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-21 22:11:57 -04:00
Start to adjust to support both small and large memory models in the MSP430X IAR demo.
This commit is contained in:
parent
4059be7918
commit
19fcd2d505
|
@ -72,7 +72,6 @@
|
||||||
#define configCPU_CLOCK_HZ ( 16000000UL )
|
#define configCPU_CLOCK_HZ ( 16000000UL )
|
||||||
#define configTICK_RATE_HZ ( ( portTickType ) 1000 )
|
#define configTICK_RATE_HZ ( ( portTickType ) 1000 )
|
||||||
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 5 )
|
#define configMAX_PRIORITIES ( ( unsigned portBASE_TYPE ) 5 )
|
||||||
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 70 )
|
|
||||||
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 10 * 1024 ) )
|
#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 10 * 1024 ) )
|
||||||
#define configMAX_TASK_NAME_LEN ( 10 )
|
#define configMAX_TASK_NAME_LEN ( 10 )
|
||||||
#define configUSE_TRACE_FACILITY 0
|
#define configUSE_TRACE_FACILITY 0
|
||||||
|
@ -86,6 +85,12 @@
|
||||||
#define configUSE_MALLOC_FAILED_HOOK 1
|
#define configUSE_MALLOC_FAILED_HOOK 1
|
||||||
#define configUSE_APPLICATION_TASK_TAG 0
|
#define configUSE_APPLICATION_TASK_TAG 0
|
||||||
|
|
||||||
|
#if __DATA_MODEL__ == __DATA_MODEL_SMALL__
|
||||||
|
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 100 )
|
||||||
|
#else
|
||||||
|
#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 70 )
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Co-routine definitions. */
|
/* Co-routine definitions. */
|
||||||
#define configUSE_CO_ROUTINES 0
|
#define configUSE_CO_ROUTINES 0
|
||||||
#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )
|
#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<project>
|
<project>
|
||||||
<fileVersion>2</fileVersion>
|
<fileVersion>2</fileVersion>
|
||||||
<configuration>
|
<configuration>
|
||||||
<name>Debug</name>
|
<name>Debug_Large_Data_Model</name>
|
||||||
<toolchain>
|
<toolchain>
|
||||||
<name>MSP430</name>
|
<name>MSP430</name>
|
||||||
</toolchain>
|
</toolchain>
|
||||||
|
@ -368,372 +368,6 @@
|
||||||
</plugin>
|
</plugin>
|
||||||
</debuggerPlugins>
|
</debuggerPlugins>
|
||||||
</configuration>
|
</configuration>
|
||||||
<configuration>
|
|
||||||
<name>Release</name>
|
|
||||||
<toolchain>
|
|
||||||
<name>MSP430</name>
|
|
||||||
</toolchain>
|
|
||||||
<debug>1</debug>
|
|
||||||
<settings>
|
|
||||||
<name>C-SPY</name>
|
|
||||||
<archiveVersion>4</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<version>25</version>
|
|
||||||
<wantNonLocal>1</wantNonLocal>
|
|
||||||
<debug>1</debug>
|
|
||||||
<option>
|
|
||||||
<name>CInput</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>MacOverride</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>MacFile</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IProcessor</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GoToEnable</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GoToName</name>
|
|
||||||
<state>main</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DynDriver</name>
|
|
||||||
<state>430FET</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>dDllSlave</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DdfFileSlave</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DdfOverride</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DdfFileName</name>
|
|
||||||
<state>$TOOLKIT_DIR$\config\MSP430F5438A.ddf</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ProcTMS</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CExtraOptionsCheck</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CExtraOptions</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ProcMSP430X</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CompilerDataModel</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IVBASE</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesSuppressCheck1</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesPath1</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesSuppressCheck2</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesPath2</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesSuppressCheck3</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesPath3</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CPUTAG</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>L092Mode</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesOffset1</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesOffset2</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesOffset3</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesUse1</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesUse2</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCImagesUse3</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>430FET</name>
|
|
||||||
<archiveVersion>1</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<version>22</version>
|
|
||||||
<wantNonLocal>1</wantNonLocal>
|
|
||||||
<debug>1</debug>
|
|
||||||
<option>
|
|
||||||
<name>CFetMandatory</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>Erase</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>EMUVerifyDownloadP7</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>EraseOptionSlaveP7</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ExitBreakpointP7</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>PutcharBreakpointP7</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GetcharBreakpointP7</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>derivativeP7</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ParallelPortP7</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>TargetVoltage</name>
|
|
||||||
<state>3.3</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AllowLockedFlashAccessP7</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>EMUAttach</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AttachOptionSlave</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CRadioProtocolType</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCRadioModuleTypeSlave</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>EEMLevel</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DiasbleMemoryCache</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>NeedLockedFlashAccess</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>UsbComPort</name>
|
|
||||||
<state>Automatic</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>FetConnection</name>
|
|
||||||
<version>2</version>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>SoftwareBreakpointEnable</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RadioSoftwareBreakpointType</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>TargetSettlingtime</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AllowAccessToBSL</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OTargetVccTypeDefault</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCBetaDll</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GPassword</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DebugLPM5</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>LPM5Slave</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CRadioAutoManualType</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ExternalCodeDownload</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCVCCDefault</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>SIM430</name>
|
|
||||||
<archiveVersion>1</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<version>4</version>
|
|
||||||
<wantNonLocal>1</wantNonLocal>
|
|
||||||
<debug>1</debug>
|
|
||||||
<option>
|
|
||||||
<name>SimOddAddressCheckP7</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CSimMandatory</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>derivativeSim</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>SimEnablePSP</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>SimPspOverrideConfig</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>SimPspConfigFile</name>
|
|
||||||
<state>$TOOLKIT_DIR$\CONFIG\test.psp.config</state>
|
|
||||||
</option>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<debuggerPlugins>
|
|
||||||
<plugin>
|
|
||||||
<file>$TOOLKIT_DIR$\plugins\Lcd\lcd.ewplugin</file>
|
|
||||||
<loadFlag>1</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$TOOLKIT_DIR$\plugins\rtos\embOS\embOSPlugin.ewplugin</file>
|
|
||||||
<loadFlag>0</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$TOOLKIT_DIR$\plugins\rtos\OpenRTOS\OpenRTOSPlugin.ewplugin</file>
|
|
||||||
<loadFlag>1</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$TOOLKIT_DIR$\plugins\rtos\PowerPac\PowerPacRTOS.ewplugin</file>
|
|
||||||
<loadFlag>0</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-286-KA-CSpy.ewplugin</file>
|
|
||||||
<loadFlag>0</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$TOOLKIT_DIR$\plugins\rtos\uCOS-II\uCOS-II-KA-CSpy.ewplugin</file>
|
|
||||||
<loadFlag>0</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ENU.ewplugin</file>
|
|
||||||
<loadFlag>1</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$EW_DIR$\common\plugins\FreeRTOS\FreeRTOSPlugin.ewplugin</file>
|
|
||||||
<loadFlag>0</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$EW_DIR$\common\plugins\OpenRTOS\OpenRTOSPlugin.ewplugin</file>
|
|
||||||
<loadFlag>0</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$EW_DIR$\common\plugins\Orti\Orti.ENU.ewplugin</file>
|
|
||||||
<loadFlag>0</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$EW_DIR$\common\plugins\Profiling\Profiling.ENU.ewplugin</file>
|
|
||||||
<loadFlag>1</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$EW_DIR$\common\plugins\Stack\Stack.ENU.ewplugin</file>
|
|
||||||
<loadFlag>1</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
<plugin>
|
|
||||||
<file>$EW_DIR$\common\plugins\SymList\SymList.ENU.ewplugin</file>
|
|
||||||
<loadFlag>1</loadFlag>
|
|
||||||
</plugin>
|
|
||||||
</debuggerPlugins>
|
|
||||||
</configuration>
|
|
||||||
</project>
|
</project>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<project>
|
<project>
|
||||||
<fileVersion>2</fileVersion>
|
<fileVersion>2</fileVersion>
|
||||||
<configuration>
|
<configuration>
|
||||||
<name>Debug</name>
|
<name>Debug_Large_Data_Model</name>
|
||||||
<toolchain>
|
<toolchain>
|
||||||
<name>MSP430</name>
|
<name>MSP430</name>
|
||||||
</toolchain>
|
</toolchain>
|
||||||
|
@ -17,15 +17,15 @@
|
||||||
<debug>1</debug>
|
<debug>1</debug>
|
||||||
<option>
|
<option>
|
||||||
<name>ExePath</name>
|
<name>ExePath</name>
|
||||||
<state>Debug\Exe</state>
|
<state>Debug_Large_Data_Model\Exe</state>
|
||||||
</option>
|
</option>
|
||||||
<option>
|
<option>
|
||||||
<name>ObjPath</name>
|
<name>ObjPath</name>
|
||||||
<state>Debug\Obj</state>
|
<state>Debug_Large_Data_Model\Obj</state>
|
||||||
</option>
|
</option>
|
||||||
<option>
|
<option>
|
||||||
<name>ListPath</name>
|
<name>ListPath</name>
|
||||||
<state>Debug\List</state>
|
<state>Debug_Large_Data_Model\List</state>
|
||||||
</option>
|
</option>
|
||||||
<option>
|
<option>
|
||||||
<name>PosIndCode</name>
|
<name>PosIndCode</name>
|
||||||
|
@ -58,11 +58,11 @@
|
||||||
</option>
|
</option>
|
||||||
<option>
|
<option>
|
||||||
<name>RTConfigPath</name>
|
<name>RTConfigPath</name>
|
||||||
<state>$TOOLKIT_DIR$\LIB\DLIB\dl430xmff.h</state>
|
<state>$TOOLKIT_DIR$\LIB\DLIB\dl430xlff.h</state>
|
||||||
</option>
|
</option>
|
||||||
<option>
|
<option>
|
||||||
<name>RTLibraryPath</name>
|
<name>RTLibraryPath</name>
|
||||||
<state>$TOOLKIT_DIR$\LIB\DLIB\dl430xmff.r43</state>
|
<state>$TOOLKIT_DIR$\LIB\DLIB\dl430xlff.r43</state>
|
||||||
</option>
|
</option>
|
||||||
<option>
|
<option>
|
||||||
<name>Input variant</name>
|
<name>Input variant</name>
|
||||||
|
@ -561,897 +561,7 @@
|
||||||
<option>
|
<option>
|
||||||
<name>AUserIncludes</name>
|
<name>AUserIncludes</name>
|
||||||
<state>$PROJ_DIR$</state>
|
<state>$PROJ_DIR$</state>
|
||||||
</option>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>CUSTOM</name>
|
|
||||||
<archiveVersion>3</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<extensions></extensions>
|
|
||||||
<cmdline></cmdline>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>BICOMP</name>
|
|
||||||
<archiveVersion>0</archiveVersion>
|
|
||||||
<data/>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>BUILDACTION</name>
|
|
||||||
<archiveVersion>1</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<prebuild></prebuild>
|
|
||||||
<postbuild></postbuild>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>XLINK</name>
|
|
||||||
<archiveVersion>4</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<version>22</version>
|
|
||||||
<wantNonLocal>1</wantNonLocal>
|
|
||||||
<debug>1</debug>
|
|
||||||
<option>
|
|
||||||
<name>XOutOverride</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OutputFile</name>
|
|
||||||
<state>RTOSDemo.d43</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OutputFormat</name>
|
|
||||||
<version>11</version>
|
|
||||||
<state>33</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>FormatVariant</name>
|
|
||||||
<version>8</version>
|
|
||||||
<state>2</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>SecondaryOutputFile</name>
|
|
||||||
<state>(None for the selected format)</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XDefines</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AlwaysOutput</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OverlapWarnings</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>NoGlobalCheck</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XList</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>SegmentMap</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ListSymbols</name>
|
|
||||||
<state>2</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>PageLengthCheck</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>PageLength</name>
|
|
||||||
<state>80</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XIncludes</name>
|
|
||||||
<state>$TOOLKIT_DIR$\LIB\</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ModuleStatus</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XclOverride</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XclFile</name>
|
|
||||||
<state>$PROJ_DIR$\lnk430F5438A_mod.xcl</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XclFileSlave</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DoFill</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>FillerByte</name>
|
|
||||||
<state>0xFF</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DoCrc</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CrcSize</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CrcAlgo</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CrcPoly</name>
|
|
||||||
<state>0x11021</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CrcCompl</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RangeCheckAlternatives</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>SuppressAllWarn</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>SuppressDiags</name>
|
|
||||||
<state>w6</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>TreatAsWarn</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>TreatAsErr</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ModuleLocalSym</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CrcBitOrder</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XHardwareMul</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IncludeSuppressed</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ModuleSummary</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XlinkStackSize</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XlinkCodeModel</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>xcProgramEntryLabel</name>
|
|
||||||
<state>__program_start</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>DebugInformation</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RuntimeControl</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IoEmulation</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XcRTLibraryFile</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OXLibIOConfig</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XLibraryHeap</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AllowExtraOutput</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GenerateExtraOutput</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XExtraOutOverride</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ExtraOutputFile</name>
|
|
||||||
<state>RTOSDemo.a43</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ExtraOutputFormat</name>
|
|
||||||
<version>11</version>
|
|
||||||
<state>23</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ExtraFormatVariant</name>
|
|
||||||
<version>8</version>
|
|
||||||
<state>2</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>xcOverrideProgramEntryLabel</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>xcProgramEntryLabelSelect</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ListOutputFormat</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>BufferedTermOutput</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XExtraOptionsCheck</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XExtraOptions</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OverlaySystemMap</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RawBinaryFile</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RawBinarySymbol</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RawBinarySegment</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RawBinaryAlign</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XLinkMisraHandler</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CrcAlign</name>
|
|
||||||
<state>2</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CrcInitialValue</name>
|
|
||||||
<state>0x0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XLibraryHeap20</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>XAR</name>
|
|
||||||
<archiveVersion>4</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<version>0</version>
|
|
||||||
<wantNonLocal>1</wantNonLocal>
|
|
||||||
<debug>1</debug>
|
|
||||||
<option>
|
|
||||||
<name>XAROutOverride</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>XARInputs</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OutputFile</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>BILINK</name>
|
|
||||||
<archiveVersion>0</archiveVersion>
|
|
||||||
<data/>
|
|
||||||
</settings>
|
|
||||||
</configuration>
|
|
||||||
<configuration>
|
|
||||||
<name>Release</name>
|
|
||||||
<toolchain>
|
|
||||||
<name>MSP430</name>
|
|
||||||
</toolchain>
|
|
||||||
<debug>1</debug>
|
|
||||||
<settings>
|
|
||||||
<name>General</name>
|
|
||||||
<archiveVersion>7</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<version>27</version>
|
|
||||||
<wantNonLocal>1</wantNonLocal>
|
|
||||||
<debug>1</debug>
|
|
||||||
<option>
|
|
||||||
<name>ExePath</name>
|
|
||||||
<state>Release\Exe</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ObjPath</name>
|
|
||||||
<state>Release\Obj</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ListPath</name>
|
|
||||||
<state>Release\List</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>PosIndCode</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>Hardware Multiplier</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GOutputBinary</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AssemblerOnly</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OGDouble</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GRuntimeLibSelect</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>2</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RTDescription</name>
|
|
||||||
<state>Use the full configuration of the C/EC++ runtime library. Full locale interface, C locale, file descriptor support, multibytes in printf and scanf, and hex floats in strtod.</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RTConfigPath</name>
|
|
||||||
<state>$TOOLKIT_DIR$\LIB\DLIB\dl430xlff.h</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RTLibraryPath</name>
|
|
||||||
<state>$TOOLKIT_DIR$\LIB\DLIB\dl430xlff.r43</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>Input variant</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>3</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>Input description</name>
|
|
||||||
<state>No specifier n, no float or long long, no scan set, no assignment suppressing.</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>Output variant</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>4</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>Output description</name>
|
|
||||||
<state>No specifier a or A, no specifier n, no float or long long, no flags.</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GRuntimeLibSelectSlave</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>2</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OGCore</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GeneralEnableMisra</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GeneralMisraVerbose</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OGChipSelectMenu</name>
|
|
||||||
<state>MSP430F5438A MSP430F5438A</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GStackHeapOverride</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GStackSize2</name>
|
|
||||||
<state>160</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GHeapSize2</name>
|
|
||||||
<state>160</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RadioDataModelType</name>
|
|
||||||
<state>2</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GHeap20Size</name>
|
|
||||||
<state>80</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GeneralMisraRules98</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RadioHeapSizeType</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RadioHardwareMultiplierType</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GeneralMisraVer</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>GeneralMisraRules04</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>RadioL092ModelType</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>ICC430</name>
|
|
||||||
<archiveVersion>4</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<version>30</version>
|
|
||||||
<wantNonLocal>1</wantNonLocal>
|
|
||||||
<debug>1</debug>
|
|
||||||
<option>
|
|
||||||
<name>CCDefines</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCPreprocFile</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCPreprocComments</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCPreprocLine</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCListCFile</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCListCMnemonics</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCListCMessages</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCListAssFile</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCListAssSource</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCEnableRemarks</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCDiagSuppress</name>
|
|
||||||
<state>Pa082</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCDiagRemark</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCDiagWarning</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCDiagError</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IObjPrefix2</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCRequirePrototypes</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCAllowList</name>
|
|
||||||
<version>1</version>
|
|
||||||
<state>11111</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCObjUseModuleName</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCObjModuleName</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCDebugInfo</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IProcessor</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCDiagWarnAreErr</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCCharIs</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCExt</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCMultibyteSupport</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCMigrationPreprocExtentions</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCCompilerRuntimeInfo</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IDoubleSize</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OutputFile</name>
|
|
||||||
<state>$FILE_BNAME$.r43</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCLibConfigHeader</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCCR4Utilize</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OCCR5Utilize</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CPIC</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IExtraOptionsCheck</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IExtraOptions</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>PreInclude</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCOverrideModuleTypeDefault</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCRadioModuleType</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCRadioModuleTypeSlave</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>newCCIncludePaths</name>
|
|
||||||
<state>$PROJ_DIR$\F5XX_6XX_Core_Lib</state>
|
|
||||||
<state>$PROJ_DIR$\MSP-EXP430F5438_HAL</state>
|
|
||||||
<state>$PROJ_DIR$\UserExperienceDemo</state>
|
|
||||||
<state>$PROJ_DIR$\..\Common\include</state>
|
|
||||||
<state>$PROJ_DIR$\..\..\Source\include</state>
|
|
||||||
<state>$PROJ_DIR$\..\..\Source\portable\IAR\MSP430X</state>
|
<state>$PROJ_DIR$\..\..\Source\portable\IAR\MSP430X</state>
|
||||||
<state>$PROJ_DIR$</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCStdIncCheck</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CompilerMisraOverride</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OI430X</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ReduceStack</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>Save20bit</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CompilerDataModel</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCOptLevel</name>
|
|
||||||
<state>3</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCOptStrategy</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCOptLevelSlave</name>
|
|
||||||
<state>3</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CInput</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CompilerMisraRules98</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>1000111110110101101110011100111111101110011011000101110111101101100111111111111100110011111001110111001111111111111111111111111</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CompilerMisraRules04</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>111101110010111111111000110111111111111111111111111110010111101111010101111111111111111111111111101111111011111001111011111011111111111111111</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IccLang</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IccCDialect</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IccAllowVLA</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IccCppDialect</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IccRelaxedFpPrecision</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>CCPUTAG</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
</data>
|
|
||||||
</settings>
|
|
||||||
<settings>
|
|
||||||
<name>A430</name>
|
|
||||||
<archiveVersion>4</archiveVersion>
|
|
||||||
<data>
|
|
||||||
<version>13</version>
|
|
||||||
<wantNonLocal>1</wantNonLocal>
|
|
||||||
<debug>1</debug>
|
|
||||||
<option>
|
|
||||||
<name>AObjPrefix</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ACaseSensitivity</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>MacroChars</name>
|
|
||||||
<version>0</version>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AWarnEnable</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AWarnWhat</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AWarnOne</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AWarnRange1</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AWarnRange2</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ADefines</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AList</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AListHeader</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AListing</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>Includes</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>MacDefs</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>MacExps</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>MacExec</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OnlyAssed</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>MultiLine</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>PageLengthCheck</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>PageLength</name>
|
|
||||||
<state>80</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>TabSpacing</name>
|
|
||||||
<state>8</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AXRef</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AXRefDefines</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AXRefInternal</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AXRefDual</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ADebug</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>ADebugType</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>IProcessor</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AMaxErrOn</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AMaxErrNum</name>
|
|
||||||
<state>100</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OutputFile</name>
|
|
||||||
<state>$FILE_BNAME$.r43</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AMultibyteSupport</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AExtraOptionsCheck</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AExtraOptions</name>
|
|
||||||
<state></state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>OA1M</name>
|
|
||||||
<state>1</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AIgnoreStdInclude</name>
|
|
||||||
<state>0</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AStdIncludes</name>
|
|
||||||
<state>$TOOLKIT_DIR$\INC\</state>
|
|
||||||
</option>
|
|
||||||
<option>
|
|
||||||
<name>AUserIncludes</name>
|
|
||||||
<state>$PROJ_DIR$</state>
|
|
||||||
</option>
|
</option>
|
||||||
</data>
|
</data>
|
||||||
</settings>
|
</settings>
|
||||||
|
|
|
@ -52,6 +52,7 @@
|
||||||
*/
|
*/
|
||||||
#include "msp430.h"
|
#include "msp430.h"
|
||||||
#include "FreeRTOSConfig.h"
|
#include "FreeRTOSConfig.h"
|
||||||
|
#include "data_model.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The definition of the "register test" tasks, as described at the top of
|
* The definition of the "register test" tasks, as described at the top of
|
||||||
|
@ -72,47 +73,47 @@
|
||||||
vRegTest1Task:
|
vRegTest1Task:
|
||||||
|
|
||||||
/* Fill each general purpose register with a known value. */
|
/* Fill each general purpose register with a known value. */
|
||||||
movx.a #0x44444, r4
|
mov_x #0x4444, r4
|
||||||
movx.a #0x55555, r5
|
mov_x #0x5555, r5
|
||||||
movx.a #0x66666, r6
|
mov_x #0x6666, r6
|
||||||
movx.a #0x77777, r7
|
mov_x #0x7777, r7
|
||||||
movx.a #0x88888, r8
|
mov_x #0x8888, r8
|
||||||
movx.a #0x99999, r9
|
mov_x #0x9999, r9
|
||||||
movx.a #0xaaaaa, r10
|
mov_x #0xaaaa, r10
|
||||||
movx.a #0xbbbbb, r11
|
mov_x #0xbbbb, r11
|
||||||
movx.a #0xccccc, r12
|
mov_x #0xcccc, r12
|
||||||
movx.a #0xddddd, r13
|
mov_x #0xdddd, r13
|
||||||
movx.a #0xeeeee, r14
|
mov_x #0xeeee, r14
|
||||||
movx.a #0xfffff, r15
|
mov_x #0xffff, r15
|
||||||
|
|
||||||
prvRegTest1Loop:
|
prvRegTest1Loop:
|
||||||
|
|
||||||
/* Test each general purpose register to check that it still contains the
|
/* Test each general purpose register to check that it still contains the
|
||||||
expected known value, jumping to vRegTest1Error if any register contains
|
expected known value, jumping to vRegTest1Error if any register contains
|
||||||
an unexpected value. */
|
an unexpected value. */
|
||||||
cmpx.a #0x44444, r4
|
cmp_x #0x4444, r4
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0x55555, r5
|
cmp_x #0x5555, r5
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0x66666, r6
|
cmp_x #0x6666, r6
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0x77777, r7
|
cmp_x #0x7777, r7
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0x88888, r8
|
cmp_x #0x8888, r8
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0x99999, r9
|
cmp_x #0x9999, r9
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0xaaaaa, r10
|
cmp_x #0xaaaa, r10
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0xbbbbb, r11
|
cmp_x #0xbbbb, r11
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0xccccc, r12
|
cmp_x #0xcccc, r12
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0xddddd, r13
|
cmp_x #0xdddd, r13
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0xeeeee, r14
|
cmp_x #0xeeee, r14
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
cmpx.a #0xfffff, r15
|
cmp_x #0xffff, r15
|
||||||
jne vRegTest1Error
|
jne vRegTest1Error
|
||||||
|
|
||||||
/* This task is still running without jumping to vRegTest1Error, so increment
|
/* This task is still running without jumping to vRegTest1Error, so increment
|
||||||
|
@ -134,44 +135,44 @@ vRegTest1Error:
|
||||||
different values in its registers. */
|
different values in its registers. */
|
||||||
vRegTest2Task:
|
vRegTest2Task:
|
||||||
|
|
||||||
movx.a #0x14441, r4
|
mov_x #0x4441, r4
|
||||||
movx.a #0x15551, r5
|
mov_x #0x5551, r5
|
||||||
movx.a #0x16661, r6
|
mov_x #0x6661, r6
|
||||||
movx.a #0x17771, r7
|
mov_x #0x7771, r7
|
||||||
movx.a #0x18881, r8
|
mov_x #0x8881, r8
|
||||||
movx.a #0x19991, r9
|
mov_x #0x9991, r9
|
||||||
movx.a #0x1aaa1, r10
|
mov_x #0xaaa1, r10
|
||||||
movx.a #0x1bbb1, r11
|
mov_x #0xbbb1, r11
|
||||||
movx.a #0x1ccc1, r12
|
mov_x #0xccc1, r12
|
||||||
movx.a #0x1ddd1, r13
|
mov_x #0xddd1, r13
|
||||||
movx.a #0x1eee1, r14
|
mov_x #0xeee1, r14
|
||||||
movx.a #0x1fff1, r15
|
mov_x #0xfff1, r15
|
||||||
|
|
||||||
prvRegTest2Loop:
|
prvRegTest2Loop:
|
||||||
|
|
||||||
cmpx.a #0x14441, r4
|
cmp_x #0x4441, r4
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x15551, r5
|
cmp_x #0x5551, r5
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x16661, r6
|
cmp_x #0x6661, r6
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x17771, r7
|
cmp_x #0x7771, r7
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x18881, r8
|
cmp_x #0x8881, r8
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x19991, r9
|
cmp_x #0x9991, r9
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x1aaa1, r10
|
cmp_x #0xaaa1, r10
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x1bbb1, r11
|
cmp_x #0xbbb1, r11
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x1ccc1, r12
|
cmp_x #0xccc1, r12
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x1ddd1, r13
|
cmp_x #0xddd1, r13
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x1eee1, r14
|
cmp_x #0xeee1, r14
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
cmpx.a #0x1fff1, r15
|
cmp_x #0xfff1, r15
|
||||||
jne vRegTest2Error
|
jne vRegTest2Error
|
||||||
|
|
||||||
/* Also perform a manual yield, just to increase the scope of the test. */
|
/* Also perform a manual yield, just to increase the scope of the test. */
|
||||||
|
|
|
@ -207,9 +207,9 @@
|
||||||
|
|
||||||
// *** Modified to place code in high memory and insodoing, testing the port.
|
// *** Modified to place code in high memory and insodoing, testing the port.
|
||||||
// Original code
|
// Original code
|
||||||
//-Z(CONST)DATA20_C,DATA20_ID=5C00-FF7F,10000-45BFF
|
-Z(CONST)DATA20_C,DATA20_ID=5C00-FF7F,10000-45BFF
|
||||||
// Modified code
|
// Modified code
|
||||||
-Z(CONST)DATA20_C,DATA20_ID=10000-45BFF
|
//-Z(CONST)DATA20_C,DATA20_ID=10000-45BFF
|
||||||
|
|
||||||
|
|
||||||
// -------------------------------------
|
// -------------------------------------
|
||||||
|
|
|
@ -183,6 +183,9 @@ information. */
|
||||||
|
|
||||||
/* The maximum number of lines of text that can be displayed on the LCD. */
|
/* The maximum number of lines of text that can be displayed on the LCD. */
|
||||||
#define mainMAX_LCD_LINES ( 8 )
|
#define mainMAX_LCD_LINES ( 8 )
|
||||||
|
|
||||||
|
/* Just used to ensure parameters are passed into tasks correctly. */
|
||||||
|
#define mainTASK_PARAMETER_CHECK_VALUE ( ( void * ) 0xDEAD )
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -266,7 +269,7 @@ void main( void )
|
||||||
|
|
||||||
/* Create the LCD, button poll and register test tasks, as described at
|
/* Create the LCD, button poll and register test tasks, as described at
|
||||||
the top of this file. */
|
the top of this file. */
|
||||||
xTaskCreate( prvLCDTask, ( signed char * ) "LCD", configMINIMAL_STACK_SIZE * 2, NULL, mainLCD_TASK_PRIORITY, NULL );
|
xTaskCreate( prvLCDTask, ( signed char * ) "LCD", configMINIMAL_STACK_SIZE * 2, mainTASK_PARAMETER_CHECK_VALUE, mainLCD_TASK_PRIORITY, NULL );
|
||||||
xTaskCreate( prvButtonPollTask, ( signed char * ) "BPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
|
xTaskCreate( prvButtonPollTask, ( signed char * ) "BPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
|
||||||
xTaskCreate( vRegTest1Task, ( signed char * ) "Reg1", configMINIMAL_STACK_SIZE, NULL, 0, NULL );
|
xTaskCreate( vRegTest1Task, ( signed char * ) "Reg1", configMINIMAL_STACK_SIZE, NULL, 0, NULL );
|
||||||
xTaskCreate( vRegTest2Task, ( signed char * ) "Reg2", configMINIMAL_STACK_SIZE, NULL, 0, NULL );
|
xTaskCreate( vRegTest2Task, ( signed char * ) "Reg2", configMINIMAL_STACK_SIZE, NULL, 0, NULL );
|
||||||
|
@ -304,6 +307,15 @@ unsigned char ucLine = 1;
|
||||||
First print out the number of bytes that remain in the FreeRTOS heap. This
|
First print out the number of bytes that remain in the FreeRTOS heap. This
|
||||||
can be viewed in the terminal IO window within the IAR Embedded Workbench. */
|
can be viewed in the terminal IO window within the IAR Embedded Workbench. */
|
||||||
printf( "%d bytes of heap space remain unallocated\n", ( int ) xPortGetFreeHeapSize() );
|
printf( "%d bytes of heap space remain unallocated\n", ( int ) xPortGetFreeHeapSize() );
|
||||||
|
fflush( stdout );
|
||||||
|
|
||||||
|
/* Just as a test of the port, and for no functional reason, check the task
|
||||||
|
parameter contains its expected value. */
|
||||||
|
if( pvParameters != mainTASK_PARAMETER_CHECK_VALUE )
|
||||||
|
{
|
||||||
|
halLcdPrintLine( "Invalid parameter", ucLine, OVERWRITE_TEXT );
|
||||||
|
ucLine++;
|
||||||
|
}
|
||||||
|
|
||||||
for( ;; )
|
for( ;; )
|
||||||
{
|
{
|
||||||
|
|
|
@ -26,12 +26,12 @@
|
||||||
|
|
||||||
|
|
||||||
<PreferedWindows><Position>2</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><MixedMode>1</MixedMode><CodeCovShow>1</CodeCovShow><InstrProfShow>1</InstrProfShow></Disassembly>
|
<PreferedWindows><Position>2</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><MixedMode>1</MixedMode><CodeCovShow>1</CodeCovShow><InstrProfShow>1</InstrProfShow></Disassembly>
|
||||||
<Register><PreferedWindows><Position>2</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows></Register><Memory><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><FindDirection>1</FindDirection><FindAsHex>0</FindAsHex></Memory><Watch><Format><struct_types/><watch_formats><Fmt><Key>{W}Watch-0:TA1CTL</Key><Value>4</Value></Fmt><Fmt><Key>{W}Watch-0:ulSP_PC_Combined</Key><Value>4</Value></Fmt></watch_formats></Format><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><Column0>134</Column0><Column1>139</Column1><Column2>124</Column2><Column3>100</Column3></Watch><Breakpoints><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows><Window><Factory>Debug-Log</Factory></Window></Windows></PreferedWindows></Breakpoints><TASKVIEW><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><Column0>200</Column0><Column1>100</Column1><Column2>100</Column2><Column3>100</Column3><Column4>100</Column4><Column5>100</Column5><Column6>100</Column6><Column7>150</Column7></TASKVIEW><TerminalIO><InputSource>1</InputSource><InputMode>10</InputMode><Filename>$PROJ_DIR$\TermIOInput.txt</Filename><InputEcho>1</InputEcho><ShowReset>0</ShowReset></TerminalIO><DeviceInformationWindow><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><Column0>150</Column0><Column1>150</Column1></DeviceInformationWindow><StateStorageDialog><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows></StateStorageDialog><SequencerDialog><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><SequencerMask>0</SequencerMask><Advanced>0</Advanced></SequencerDialog><CallStack><PreferedWindows><Position>1</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><ViewArgs>1</ViewArgs></CallStack><QUEUEVIEW><Column0>300</Column0><Column1>100</Column1><Column2>100</Column2><Column3>100</Column3><Column4>100</Column4><Column5>100</Column5><Column6>100</Column6></QUEUEVIEW></Static>
|
<Register><PreferedWindows><Position>2</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows></Register><Memory><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><FindDirection>1</FindDirection><FindAsHex>0</FindAsHex></Memory><Watch><Format><struct_types/><watch_formats><Fmt><Key>{W}Watch-0:TA1CTL</Key><Value>4</Value></Fmt><Fmt><Key>{W}Watch-0:ulSP_PC_Combined</Key><Value>4</Value></Fmt></watch_formats></Format><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><Column0>134</Column0><Column1>139</Column1><Column2>124</Column2><Column3>100</Column3></Watch><Breakpoints><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows><Window><Factory>Debug-Log</Factory></Window></Windows></PreferedWindows></Breakpoints><TASKVIEW><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><Column0>200</Column0><Column1>100</Column1><Column2>100</Column2><Column3>100</Column3><Column4>100</Column4><Column5>100</Column5><Column6>100</Column6><Column7>150</Column7></TASKVIEW><TerminalIO><PreferedWindows><Position>2</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><InputSource>1</InputSource><InputMode>10</InputMode><Filename>$PROJ_DIR$\TermIOInput.txt</Filename><InputEcho>1</InputEcho><ShowReset>0</ShowReset></TerminalIO><DeviceInformationWindow><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><Column0>150</Column0><Column1>150</Column1></DeviceInformationWindow><StateStorageDialog><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows></StateStorageDialog><SequencerDialog><PreferedWindows><Position>3</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><SequencerMask>0</SequencerMask><Advanced>0</Advanced></SequencerDialog><CallStack><PreferedWindows><Position>1</Position><ScreenPosX>0</ScreenPosX><ScreenPosY>0</ScreenPosY><Windows/></PreferedWindows><ViewArgs>1</ViewArgs></CallStack><QUEUEVIEW><Column0>300</Column0><Column1>100</Column1><Column2>100</Column2><Column3>100</Column3><Column4>100</Column4><Column5>100</Column5><Column6>100</Column6></QUEUEVIEW></Static>
|
||||||
<Windows>
|
<Windows>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<Wnd1>
|
<Wnd2>
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<Tab>
|
<Tab>
|
||||||
<Identity>TabID-11539-27703</Identity>
|
<Identity>TabID-11539-27703</Identity>
|
||||||
|
@ -39,24 +39,24 @@
|
||||||
<Factory>Workspace</Factory>
|
<Factory>Workspace</Factory>
|
||||||
<Session>
|
<Session>
|
||||||
|
|
||||||
<NodeDict><ExpandedNode>RTOSDemo</ExpandedNode></NodeDict></Session>
|
<NodeDict><ExpandedNode>RTOSDemo</ExpandedNode><ExpandedNode>RTOSDemo/FreeRTOS_Source</ExpandedNode><ExpandedNode>RTOSDemo/FreeRTOS_Source/Portable</ExpandedNode></NodeDict></Session>
|
||||||
</Tab>
|
</Tab>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
||||||
<SelectedTab>0</SelectedTab></Wnd1><Wnd5><Tabs><Tab><Identity>TabID-12395-27916</Identity><TabName>Terminal I/O</TabName><Factory>TerminalIO</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd5><Wnd6/><Wnd7/><Wnd0><Tabs><Tab><Identity>TabID-26682-3495</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd0></Windows>
|
<SelectedTab>0</SelectedTab></Wnd2><Wnd3><Tabs><Tab><Identity>TabID-31440-8210</Identity><TabName>Debug Log</TabName><Factory>Debug-Log</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd3><Wnd4><Tabs><Tab><Identity>TabID-22030-8386</Identity><TabName>Terminal I/O</TabName><Factory>TerminalIO</Factory><Session/></Tab></Tabs><SelectedTab>0</SelectedTab></Wnd4></Windows>
|
||||||
<Editor>
|
<Editor>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\main.c</Filename><XPos>0</XPos><YPos>227</YPos><SelStart>12065</SelStart><SelEnd>12065</SelEnd></Tab><ActiveTab>0</ActiveTab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
|
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\main.c</Filename><XPos>0</XPos><YPos>242</YPos><SelStart>12197</SelStart><SelEnd>12197</SelEnd></Tab><ActiveTab>0</ActiveTab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\Source\portable\IAR\MSP430X\portext.s43</Filename><XPos>0</XPos><YPos>143</YPos><SelStart>5339</SelStart><SelEnd>5339</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\FreeRTOSConfig.h</Filename><XPos>0</XPos><YPos>70</YPos><SelStart>4385</SelStart><SelEnd>4385</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\Source\tasks.c</Filename><XPos>0</XPos><YPos>1601</YPos><SelStart>51267</SelStart><SelEnd>51267</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\Source\portable\IAR\MSP430X\portmacro.h</Filename><XPos>0</XPos><YPos>48</YPos><SelStart>3652</SelStart><SelEnd>3697</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\RegTest.s43</Filename><XPos>0</XPos><YPos>39</YPos><SelStart>3150</SelStart><SelEnd>3150</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\Source\portable\IAR\MSP430X\data_model.h</Filename><XPos>0</XPos><YPos>40</YPos><SelStart>3124</SelStart><SelEnd>3124</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\..\..\Source\portable\IAR\MSP430X\port.c</Filename><XPos>0</XPos><YPos>116</YPos><SelStart>5789</SelStart><SelEnd>5789</SelEnd></Tab><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\lnk430F5438A_mod.xcl</Filename><XPos>0</XPos><YPos>177</YPos><SelStart>5123</SelStart><SelEnd>5123</SelEnd></Tab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
|
||||||
<Positions>
|
<Positions>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<Top><Row0><Sizes><Toolbar-012aad38><key>iaridepm.enu1</key></Toolbar-012aad38><Toolbar-07577b20><key>430fet1</key></Toolbar-07577b20></Sizes></Row0><Row1><Sizes><Toolbar-07550460><key>debuggergui.enu1</key></Toolbar-07550460></Sizes></Row1></Top><Left><Row0><Sizes><Wnd1><Rect><Top>-2</Top><Left>-2</Left><Bottom>716</Bottom><Right>191</Right><x>-2</x><y>-2</y><xscreen>121</xscreen><yscreen>150</yscreen><sizeHorzCX>72024</sizeHorzCX><sizeHorzCY>152749</sizeHorzCY><sizeVertCX>114881</sizeVertCX><sizeVertCY>731161</sizeVertCY></Rect></Wnd1></Sizes></Row0></Left><Right><Row0><Sizes><Wnd5><Rect><Top>-2</Top><Left>-2</Left><Bottom>716</Bottom><Right>376</Right><x>-2</x><y>-2</y><xscreen>121</xscreen><yscreen>150</yscreen><sizeHorzCX>72024</sizeHorzCX><sizeHorzCY>152749</sizeHorzCY><sizeVertCX>225000</sizeVertCX><sizeVertCY>731161</sizeVertCY></Rect></Wnd5></Sizes></Row0></Right><Bottom><Row0><Sizes><Wnd0><Rect><Top>-2</Top><Left>-2</Left><Bottom>198</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>200</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>203666</sizeHorzCY><sizeVertCX>119048</sizeVertCX><sizeVertCY>203666</sizeVertCY></Rect></Wnd0></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
|
<Top><Row0><Sizes><Toolbar-012aad60><key>iaridepm.enu1</key></Toolbar-012aad60><Toolbar-09037e08><key>430fet1</key></Toolbar-09037e08></Sizes></Row0><Row1><Sizes><Toolbar-069688b8><key>debuggergui.enu1</key></Toolbar-069688b8></Sizes></Row1><Row2><Sizes/></Row2><Row3><Sizes/></Row3><Row4><Sizes/></Row4><Row5><Sizes/></Row5><Row6><Sizes/></Row6><Row7><Sizes/></Row7><Row8><Sizes/></Row8><Row9><Sizes/></Row9><Row10><Sizes/></Row10><Row11><Sizes/></Row11><Row12><Sizes/></Row12></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>716</Bottom><Right>191</Right><x>-2</x><y>-2</y><xscreen>121</xscreen><yscreen>150</yscreen><sizeHorzCX>72024</sizeHorzCX><sizeHorzCY>152749</sizeHorzCY><sizeVertCX>114881</sizeVertCX><sizeVertCY>731161</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes><Wnd4><Rect><Top>-2</Top><Left>-2</Left><Bottom>716</Bottom><Right>470</Right><x>-2</x><y>-2</y><xscreen>200</xscreen><yscreen>200</yscreen><sizeHorzCX>119048</sizeHorzCX><sizeHorzCY>203666</sizeHorzCY><sizeVertCX>280952</sizeVertCX><sizeVertCY>731161</sizeVertCY></Rect></Wnd4></Sizes></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>198</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>200</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>203666</sizeHorzCY><sizeVertCX>119048</sizeVertCX><sizeVertCY>203666</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
|
||||||
</Desktop>
|
</Desktop>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[DebugChecksum]
|
[DebugChecksum]
|
||||||
Checksum=-1276943022
|
Checksum=-130781403
|
||||||
[DisAssemblyWindow]
|
[DisAssemblyWindow]
|
||||||
NumStates=_ 1
|
NumStates=_ 1
|
||||||
State 1=_ 1
|
State 1=_ 1
|
||||||
|
@ -39,7 +39,7 @@ LogFile=_ ""
|
||||||
Enabled=0
|
Enabled=0
|
||||||
[DriverProfiling]
|
[DriverProfiling]
|
||||||
Enabled=0
|
Enabled=0
|
||||||
Mode=20158624
|
Mode=151407352
|
||||||
Graph=0
|
Graph=0
|
||||||
Symbiont=0
|
Symbiont=0
|
||||||
[Breakpoints]
|
[Breakpoints]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<Workspace>
|
<Workspace>
|
||||||
<ConfigDictionary>
|
<ConfigDictionary>
|
||||||
|
|
||||||
<CurrentConfigs><Project>RTOSDemo/Debug</Project></CurrentConfigs></ConfigDictionary>
|
<CurrentConfigs><Project>RTOSDemo/Debug_Large_Data_Model</Project></CurrentConfigs></ConfigDictionary>
|
||||||
<Desktop>
|
<Desktop>
|
||||||
<Static>
|
<Static>
|
||||||
<Workspace>
|
<Workspace>
|
||||||
|
@ -53,14 +53,14 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\main.c</Filename><XPos>0</XPos><YPos>227</YPos><SelStart>12065</SelStart><SelEnd>12065</SelEnd></Tab><ActiveTab>0</ActiveTab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
|
<Pane><Tab><Factory>TextEditor</Factory><Filename>$WS_DIR$\main.c</Filename><XPos>0</XPos><YPos>41</YPos><SelStart>12561</SelStart><SelEnd>12561</SelEnd></Tab><ActiveTab>0</ActiveTab></Pane><ActivePane>0</ActivePane><Sizes><Pane><X>1000000</X><Y>1000000</Y></Pane></Sizes><SplitMode>1</SplitMode></Editor>
|
||||||
<Positions>
|
<Positions>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<Top><Row0><Sizes><Toolbar-012aad38><key>iaridepm.enu1</key></Toolbar-012aad38></Sizes></Row0><Row1><Sizes/></Row1><Row2><Sizes/></Row2><Row3><Sizes/></Row3><Row4><Sizes/></Row4><Row5><Sizes/></Row5><Row6><Sizes/></Row6></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>645</Bottom><Right>309</Right><x>-2</x><y>-2</y><xscreen>331</xscreen><yscreen>267</yscreen><sizeHorzCX>197024</sizeHorzCX><sizeHorzCY>271894</sizeHorzCY><sizeVertCX>185119</sizeVertCX><sizeVertCY>658859</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>293</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>295</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>300407</sizeHorzCY><sizeVertCX>197024</sizeVertCX><sizeVertCY>271894</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
|
<Top><Row0><Sizes><Toolbar-012aad60><key>iaridepm.enu1</key></Toolbar-012aad60></Sizes></Row0><Row1><Sizes/></Row1><Row2><Sizes/></Row2><Row3><Sizes/></Row3><Row4><Sizes/></Row4><Row5><Sizes/></Row5><Row6><Sizes/></Row6><Row7><Sizes/></Row7><Row8><Sizes/></Row8><Row9><Sizes/></Row9><Row10><Sizes/></Row10><Row11><Sizes/></Row11><Row12><Sizes/></Row12><Row13><Sizes/></Row13><Row14><Sizes/></Row14><Row15><Sizes/></Row15><Row16><Sizes/></Row16></Top><Left><Row0><Sizes><Wnd2><Rect><Top>-2</Top><Left>-2</Left><Bottom>645</Bottom><Right>309</Right><x>-2</x><y>-2</y><xscreen>331</xscreen><yscreen>267</yscreen><sizeHorzCX>197024</sizeHorzCX><sizeHorzCY>271894</sizeHorzCY><sizeVertCX>185119</sizeVertCX><sizeVertCY>658859</sizeVertCY></Rect></Wnd2></Sizes></Row0></Left><Right><Row0><Sizes/></Row0></Right><Bottom><Row0><Sizes><Wnd3><Rect><Top>-2</Top><Left>-2</Left><Bottom>293</Bottom><Right>1682</Right><x>-2</x><y>-2</y><xscreen>1684</xscreen><yscreen>295</yscreen><sizeHorzCX>1002381</sizeHorzCX><sizeHorzCY>300407</sizeHorzCY><sizeVertCX>197024</sizeVertCX><sizeVertCY>271894</sizeVertCY></Rect></Wnd3></Sizes></Row0></Bottom><Float><Sizes/></Float></Positions>
|
||||||
</Desktop>
|
</Desktop>
|
||||||
</Workspace>
|
</Workspace>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue