自动更新extern.c
This commit is contained in:
parent
3353e0f792
commit
d706919abd
3
cva_asw_m0146/.vscode/c_cpp_properties.json
vendored
3
cva_asw_m0146/.vscode/c_cpp_properties.json
vendored
@ -13,7 +13,8 @@
|
||||
"__INT8_T_TYPE__=signed char",
|
||||
"__UINT8_T_TYPE__=unsigned char",
|
||||
"__INT16_T_TYPE__=signed int",
|
||||
"__UINT16_T_TYPE__=unsigned int"
|
||||
"__UINT16_T_TYPE__=unsigned int",
|
||||
"_USE_EXT_OSC_"
|
||||
]
|
||||
}
|
||||
],
|
||||
|
@ -1,113 +0,0 @@
|
||||
/*
|
||||
** ###################################################################
|
||||
** Processor: CVM0146
|
||||
** Compiler: IAR ANSI C/C++ Compiler for ARM
|
||||
**
|
||||
** Abstract:
|
||||
** Linker file for the IAR ANSI C/C++ Compiler for ARM
|
||||
**
|
||||
** Copyright (c) 2022, Shenzhen CVA Innovation CO.,LTD
|
||||
** All rights reserved.
|
||||
**
|
||||
** Shenzhen CVA Innovation CO.,LTD (CVA chip) is supplying this file for use
|
||||
** exclusively with CVA's microcontroller products. This file can be freely
|
||||
** distributed within development tools that are supporting such microcontroller
|
||||
** products.
|
||||
**
|
||||
** THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
|
||||
** OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
|
||||
** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
|
||||
** CVA SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL,
|
||||
** OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
|
||||
**
|
||||
** http: www.cvachip.com
|
||||
**
|
||||
** ###################################################################
|
||||
*/
|
||||
|
||||
/* If symbol __flash_vector_table__=1 is defined at link time
|
||||
* the interrupt vector will not be copied to RAM.
|
||||
* Warning: Using the interrupt vector from FLASH will not allow
|
||||
* INT_SYS_InstallHandler because the section is Read Only.
|
||||
*/
|
||||
define symbol __ram_vector_table_size__ = isdefinedsymbol(__flash_vector_table__) ? 0 : 0x00000400;
|
||||
define symbol __ram_vector_table_offset__ = isdefinedsymbol(__flash_vector_table__) ? 0 : 0x000003FF;
|
||||
|
||||
/* Flash */
|
||||
define symbol m_interrupts_start = 0x00000000;
|
||||
define symbol m_interrupts_end = 0x000003FF;
|
||||
|
||||
define symbol m_text_start = 0x00000400;
|
||||
define symbol m_text_end = 0x000FFFFF;
|
||||
|
||||
/* SRAM_L */
|
||||
define symbol m_interrupts_ram_start = 0x1FFF0000;
|
||||
define symbol m_interrupts_ram_end = 0x1FFF0000 + __ram_vector_table_offset__;
|
||||
|
||||
define symbol m_data_start = m_interrupts_ram_start + __ram_vector_table_size__;
|
||||
define symbol m_data_end = 0x1FFFFFFF;
|
||||
|
||||
/* SRAM_U */
|
||||
define symbol m_data_2_start = 0x20000000;
|
||||
define symbol m_data_2_end = 0x2000EFFF;
|
||||
|
||||
/* Sizes */
|
||||
if (isdefinedsymbol(__stack_size__)) {
|
||||
define symbol __size_cstack__ = __stack_size__;
|
||||
} else {
|
||||
define symbol __size_cstack__ = 0x00000800;
|
||||
}
|
||||
|
||||
if (isdefinedsymbol(__heap_size__)) {
|
||||
define symbol __size_heap__ = __heap_size__;
|
||||
} else {
|
||||
define symbol __size_heap__ = 0x00000100;
|
||||
}
|
||||
|
||||
define exported symbol __VECTOR_TABLE = m_interrupts_start;
|
||||
define exported symbol __VECTOR_RAM = isdefinedsymbol(__flash_vector_table__) ? m_interrupts_start : m_interrupts_ram_start;
|
||||
define exported symbol __RAM_VECTOR_TABLE_SIZE = __ram_vector_table_size__;
|
||||
|
||||
define exported symbol __RAM_START = m_interrupts_ram_start;
|
||||
define exported symbol __RAM_END = m_data_2_end;
|
||||
|
||||
define memory mem with size = 4G;
|
||||
define region TEXT_region = mem:[from m_interrupts_start to m_interrupts_end]
|
||||
| mem:[from m_text_start to m_text_end];
|
||||
define region DATA_region = mem:[from m_data_start to m_data_end];
|
||||
define region DATA_region_2 = mem:[from m_data_2_start to m_data_2_end-__size_cstack__];
|
||||
define region CSTACK_region = mem:[from m_data_2_end-__size_cstack__+1 to m_data_2_end];
|
||||
define region m_interrupts_ram_region = mem:[from m_interrupts_ram_start to m_interrupts_ram_end];
|
||||
|
||||
|
||||
define block CSTACK with alignment = 8, size = __size_cstack__ { };
|
||||
define block HEAP with alignment = 8, size = __size_heap__ { };
|
||||
define block RW { readwrite };
|
||||
define block ZI { zi };
|
||||
|
||||
/* Custom Section Block that can be used to place data at absolute address. */
|
||||
/* Use __attribute__((section (".customSection"))) to place data here. */
|
||||
define block customSectionBlock { section .customSection };
|
||||
|
||||
define block __CODE_ROM { section .textrw_init };
|
||||
define block __CODE_RAM { section .textrw };
|
||||
|
||||
initialize manually { section .textrw };
|
||||
initialize manually { section .bss };
|
||||
initialize manually { section .customSection };
|
||||
initialize manually { section .data };
|
||||
initialize manually { section __DLIB_PERTHREAD };
|
||||
do not initialize { section .noinit, section .bss, section .data, section __DLIB_PERTHREAD, section .customSection };
|
||||
|
||||
place at address mem: m_interrupts_start { readonly section .intvec };
|
||||
place in TEXT_region { readonly };
|
||||
place in TEXT_region { block __CODE_ROM };
|
||||
place in DATA_region { block RW };
|
||||
place in DATA_region { block __CODE_RAM };
|
||||
place in DATA_region_2 { first block customSectionBlock };
|
||||
place in DATA_region_2 { block ZI };
|
||||
place in DATA_region_2 { last block HEAP };
|
||||
place in CSTACK_region { block CSTACK };
|
||||
place in m_interrupts_ram_region { section m_interrupts_ram };
|
||||
|
||||
|
@ -228,6 +228,7 @@
|
||||
<option>
|
||||
<name>CCDefines</name>
|
||||
<state>MCU_CVM0144FMLH</state>
|
||||
<state>_USE_EXT_OSC_</state>
|
||||
</option>
|
||||
<option>
|
||||
<name>CCPreprocFile</name>
|
||||
@ -1100,7 +1101,15 @@
|
||||
<settings>
|
||||
<name>BUILDACTION</name>
|
||||
<archiveVersion>2</archiveVersion>
|
||||
<data />
|
||||
<data>
|
||||
<buildActions>
|
||||
<buildAction>
|
||||
<cmdline>powershell -ExecutionPolicy Bypass -File $PROJ_DIR$\fresh_extern.ps1 && echo > "$BUILD_FILES_DIR$/.postbuild"</cmdline>
|
||||
<workingDirectory>$PROJ_DIR$</workingDirectory>
|
||||
<buildSequence>preCompile</buildSequence>
|
||||
</buildAction>
|
||||
</buildActions>
|
||||
</data>
|
||||
</settings>
|
||||
</configuration>
|
||||
<configuration>
|
||||
|
@ -3644,6 +3644,9 @@
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\src\extern.c</name>
|
||||
<configuration>
|
||||
<name>Debug</name>
|
||||
</configuration>
|
||||
</file>
|
||||
<file>
|
||||
<name>$PROJ_DIR$\src\hwctrl.c</name>
|
||||
|
1
cva_asw_m0146/fresh_extern.ps1
Normal file
1
cva_asw_m0146/fresh_extern.ps1
Normal file
@ -0,0 +1 @@
|
||||
(Get-Item ".\src\extern.c").LastWriteTime = Get-Date
|
@ -70,13 +70,13 @@ define symbol m_data_2_noinit_end = 0x2000EFFF;
|
||||
if (isdefinedsymbol(__stack_size__)) {
|
||||
define symbol __size_cstack__ = __stack_size__;
|
||||
} else {
|
||||
define symbol __size_cstack__ = 0x00001000;
|
||||
define symbol __size_cstack__ = 0x00002000;
|
||||
}
|
||||
|
||||
if (isdefinedsymbol(__heap_size__)) {
|
||||
define symbol __size_heap__ = __heap_size__;
|
||||
} else {
|
||||
define symbol __size_heap__ = 0x00000400;
|
||||
define symbol __size_heap__ = 0x00001000;
|
||||
}
|
||||
|
||||
define exported symbol __VECTOR_TABLE = m_interrupts_start;
|
||||
|
@ -158,11 +158,11 @@
|
||||
<RecentlyUsedMenus>1</RecentlyUsedMenus>
|
||||
<MenuShadows>1</MenuShadows>
|
||||
<ShowAllMenusAfterDelay>1</ShowAllMenusAfterDelay>
|
||||
<CommandsUsage>CE0000001900138600000D000000108600002800000026810000050000000F810000010000000C8100000C0000000D8000000100000001E1000001000000568600006700000017810000010000000384000001000000148100000100000055840000020000000E810000010000005E8600000100000028970000020000000B81000002000000E98000000200000014860000040000001186000010000000058100000400000046810000100000000D810000010000005D860000010000000A84000001000000E880000001000000</CommandsUsage>
|
||||
<CommandsUsage>E90000001A00138600000D0000002681000005000000108600002A0000000F810000010000005F8600000200000001E10000010000000D800000010000000C8100000C00000003840000010000001781000001000000568600007D000000558400000200000014810000010000005E860000010000000E810000010000000B810000020000002897000002000000E98000000200000014860000040000000581000004000000118600001200000046810000110000000A840000010000005D860000010000000D81000001000000E880000001000000</CommandsUsage>
|
||||
</MFCToolBarParameters>
|
||||
<CommandManager>
|
||||
<CommandsWithoutImages>16000D8400000F84000008840000FFFFFFFF54840000328100001C810000098400000C840000338400007884000011840000538400002B8700002C8700002D8700002E8700002F870000198600004D9700003597000005DC0000</CommandsWithoutImages>
|
||||
<MenuUserImages>5700048400004D00000024970000C30C0000139700007700000004810000E60C0000158100004D090000109700007200000026810000760000002CE100003D0C000007E100006809000029E10000B70000001E970000BD0C00002392000000000000318400009E0C000004E100006609000020810000740C00000F8100006C0C000000900000510C00000D8000004109000001E100006309000029970000AD0C00003A970000D80C000007970000B20000000C810000690C000023E100003A0C0000068400004F00000026970000CF0C000015970000760000000981000067000000198200000C0C0000178100004F09000034970000D30C000023970000C60C0000129700007100000003840000960C0000168200000A0C0000148100004C09000031970000D00C000025920000590000000F9700007000000000840000140D00002BE100003C0C0000308400001E0D00000E8400001C0D0000008100004209000044920000050C000003E100006509000025E100003B0C00002B970000AF0C00003C970000DA0C00001F810000730C00000E8100006B0C00001F920000020C00002F8200000D0C00000B810000E90C000000E100006209000022E10000390C000028970000AC0C000039970000D70C0000179700007B0000002D920000040C000006970000310C000041E100006F09000025970000CE0C00001497000079000000D1840000520C000005840000980C0000188200000B0C000005810000E70C0000168100004E090000119700007500000002840000950C00000E9700006F000000328400009F0C0000108400009C0C0000518400008009000005E10000670900000D810000EB0C000002E100006409000024E10000B60000002A970000AE0C00003B970000D90C000035E100008F0000000A8400009A0C000027970000C70C0000169700007C0000002C920000030C000005970000300C0000</MenuUserImages>
|
||||
<MenuUserImages>5700139700007700000024970000C30C0000048400004D0000002681000076000000109700007200000004810000E60C00002CE100003D0C0000158100004D09000023920000000000001E970000BD0C000029E10000B7000000318400009E0C000007E100006809000000900000510C000020810000740C00000F8100006C0C000004E100006609000007970000B20000003A970000D80C000029970000AD0C00000C810000690C000023E100003A0C000001E10000630900000D800000410900000981000067000000159700007600000026970000CF0C0000068400004F000000198200000C0C0000129700007100000023970000C60C000034970000D30C000003840000960C0000168200000A0C0000178100004F09000025920000590000000F9700007000000031970000D00C000000840000140D00002BE100003C0C0000148100004C09000044920000050C00000E840000D300000030840000D500000000810000420900001F920000020C00003C970000DA0C00002B970000AF0C00001F810000730C00000E8100006B0C00002F8200000D0C000025E100003B0C000003E10000650900002D920000040C0000179700007B00000039970000D70C000028970000AC0C00000B810000A000000006970000310C000022E10000390C000000E1000062090000149700007900000025970000CE0C0000D1840000520C000005840000980C0000188200000B0C000041E100006F090000119700007500000005810000E70C000002840000950C0000168100004E0900000E9700006F000000108400009C0C0000328400009F0C000005E1000067090000518400008009000035E100008F0000003B970000D90C00002A970000AE0C000024E10000B60000000A8400009A0C00000D810000A200000002E10000640900002C920000030C0000169700007C00000027970000C70C000005970000300C0000</MenuUserImages>
|
||||
</CommandManager>
|
||||
<Pane-59393>
|
||||
<ID>0</ID>
|
||||
@ -1111,7 +1111,7 @@
|
||||
</DockingManager-256>
|
||||
<MFCToolBar-34048>
|
||||
<Name>CMSIS-Pack</Name>
|
||||
<Buttons>00200000010000000100FFFF01001100434D4643546F6F6C426172427574746F6ED1840000020000000A020000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF0A43004D005300490053002D005000610063006B0018000000</Buttons>
|
||||
<Buttons>00200000010000000100FFFF01001100434D4643546F6F6C426172427574746F6ED18400000200000030010000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF0A43004D005300490053002D005000610063006B0018000000</Buttons>
|
||||
</MFCToolBar-34048>
|
||||
<Pane-34048>
|
||||
<ID>34048</ID>
|
||||
@ -1128,7 +1128,7 @@
|
||||
</BasePane-34048>
|
||||
<MFCToolBar-34049>
|
||||
<Name>Debug</Name>
|
||||
<Buttons>00200000010000000800FFFF01001100434D4643546F6F6C426172427574746F6E568600000200040025020000FFFEFF0000000000000000000000000001000000010000000180138600000200040021020000FFFEFF00000000000000000000000000010000000100000001805E8600000200040027020000FFFEFF0000000000000000000000000001000000010000000180608600000200040029020000FFFEFF00000000000000000000000000010000000100000001805D8600000200040026020000FFFEFF000000000000000000000000000100000001000000018010860000020004001F020000FFFEFF0000000000000000000000000001000000010000000180118600000200000020020000FFFEFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E148600000200040022020000FFFEFF205200650073006500740020007400680065002000640065006200750067006700650064002000700072006F006700720061006D000A00520065007300650074000000000000000000000000000100000001000000000000000000000001000000050009802B87000000000000FFFFFFFFFFFEFF13440069007300610062006C0065006400200028004E006F0020007200650073006500740029000100000000000000000000000100000001000000000000000000000001000000000009802C87000000000000FFFFFFFFFFFEFF0853006F006600740077006100720065000100000000000000000000000100000001000000000000000000000001000000000009802D87000000000000FFFFFFFFFFFEFF144800610072006400770061007200650020002800520065007300650074002000700069006E0029000100000000000000000000000100000001000000000000000000000001000000000009802E87000000000000FFFFFFFFFFFEFF0443006F00720065000100000000000000000000000100000001000000000000000000000001000000000009802F87000000000000FFFFFFFFFFFEFF064E006F0072006D0061006C000100000000000000000000000100000001000000000000000000000001000000000000000000FFFEFF0544006500620075006700C6000000</Buttons>
|
||||
<Buttons>00200000010000000800FFFF01001100434D4643546F6F6C426172427574746F6E56860000020000004B010000FFFEFF0000000000000000000000000001000000010000000180138600000200000047010000FFFEFF00000000000000000000000000010000000100000001805E860000020000004D010000FFFEFF000000000000000000000000000100000001000000018060860000020000004F010000FFFEFF00000000000000000000000000010000000100000001805D860000020000004C010000FFFEFF0000000000000000000000000001000000010000000180108600000200000045010000FFFEFF0000000000000000000000000001000000010000000180118600000200040046010000FFFEFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E148600000200000048010000FFFEFF205200650073006500740020007400680065002000640065006200750067006700650064002000700072006F006700720061006D000A00520065007300650074000000000000000000000000000100000001000000000000000000000001000000050009802B87000000000000FFFFFFFFFFFEFF13440069007300610062006C0065006400200028004E006F0020007200650073006500740029000100000000000000000000000100000001000000000000000000000001000000000009802C87000000000000FFFFFFFFFFFEFF0853006F006600740077006100720065000100000000000000000000000100000001000000000000000000000001000000000009802D87000000000000FFFFFFFFFFFEFF144800610072006400770061007200650020002800520065007300650074002000700069006E0029000100000000000000000000000100000001000000000000000000000001000000000009802E87000000000000FFFFFFFFFFFEFF0443006F00720065000100000000000000000000000100000001000000000000000000000001000000000009802F87000000000000FFFFFFFFFFFEFF064E006F0072006D0061006C000100000000000000000000000100000001000000000000000000000001000000000000000000FFFEFF0544006500620075006700C6000000</Buttons>
|
||||
</MFCToolBar-34049>
|
||||
<Pane-34049>
|
||||
<ID>34049</ID>
|
||||
@ -1145,7 +1145,7 @@
|
||||
</BasePane-34049>
|
||||
<MFCToolBar-34050>
|
||||
<Name>Trace</Name>
|
||||
<Buttons>00200000010000000200FFFF01001100434D4643546F6F6C426172427574746F6E53920000000000008C020000FFFEFF03450054004D000000000000000000000000000100000001000000018054920000000000008D020000FFFEFF03530057004F00000000000000000000000000010000000100000000000000FFFEFF05540072006100630065002F000000</Buttons>
|
||||
<Buttons>00200000010000000200FFFF01001100434D4643546F6F6C426172427574746F6E5392000000000000B2010000FFFEFF03450054004D00000000000000000000000000010000000100000001805492000000000000B3010000FFFEFF03530057004F00000000000000000000000000010000000100000000000000FFFEFF05540072006100630065002F000000</Buttons>
|
||||
</MFCToolBar-34050>
|
||||
<Pane-34050>
|
||||
<ID>34050</ID>
|
||||
@ -1162,7 +1162,7 @@
|
||||
</BasePane-34050>
|
||||
<MFCToolBar-34051>
|
||||
<Name>Main</Name>
|
||||
<Buttons>00200000010000002100FFFF01001100434D4643546F6F6C426172427574746F6E00E10000000000006B020000FFFEFF000000000000000000000000000100000001000000018001E10000000000006C020000FFFEFF000000000000000000000000000100000001000000018003E10000000000006E020000FFFEFF000000000000000000000000000100000001000000018000810000000000004B020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E100000000000071020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E100000000040073020000FFFEFF000000000000000000000000000100000001000000018022E100000000040072020000FFFEFF000000000000000000000000000100000001000000018025E100000000000074020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040075020000FFFEFF00000000000000000000000000010000000100000001802CE100000000040076020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01000D005061737465436F6D626F426F784281000000000000FFFFFFFFFFFEFF000000000000000000010000000000000001000000B400000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004005D020000FFFEFF000000000000000000000000000100000001000000018024E100000000000066020000FFFEFF000000000000000000000000000100000001000000018028E100000000040065020000FFFEFF000000000000000000000000000100000001000000018029E100000000000067020000FFFEFF000000000000000000000000000100000001000000018002810000000000004C020000FFFEFF0000000000000000000000000001000000010000000180298100000000000061020000FFFEFF000000000000000000000000000100000001000000018027810000000000005F020000FFFEFF0000000000000000000000000001000000010000000180288100000000000060020000FFFEFF00000000000000000000000000010000000100000001801D8100000000040059020000FFFEFF00000000000000000000000000010000000100000001801E810000000004005A020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B8100000200000050020000FFFEFF00000000000000000000000000010000000100000001800C8100000200000051020000FFFEFF00000000000000000000000000010000000100000001805F8600000200000064020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001801F810000020000005B020000FFFEFF000000000000000000000000000100000001000000018020810000020000005C020000FFFEFF0000000000000000000000000001000000010000000180468100000200020062020000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E003B030000</Buttons>
|
||||
<Buttons>00200000010000002100FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000092010000FFFEFF000000000000000000000000000100000001000000018001E100000000000093010000FFFEFF000000000000000000000000000100000001000000018003E100000000000095010000FFFEFF0000000000000000000000000001000000010000000180008100000000000072010000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E100000000000098010000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E10000000004009A010000FFFEFF000000000000000000000000000100000001000000018022E100000000040099010000FFFEFF000000000000000000000000000100000001000000018025E10000000000009B010000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE10000000004009C010000FFFEFF00000000000000000000000000010000000100000001802CE10000000004009D010000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01000D005061737465436F6D626F426F784281000000000000FFFFFFFFFFFEFF000000000000000000010000000000000001000000B400000002002050FFFFFFFFFFFEFF00960000000000000000000180218100000000040084010000FFFEFF000000000000000000000000000100000001000000018024E10000000000008D010000FFFEFF000000000000000000000000000100000001000000018028E10000000004008C010000FFFEFF000000000000000000000000000100000001000000018029E10000000000008E010000FFFEFF0000000000000000000000000001000000010000000180028100000000000073010000FFFEFF0000000000000000000000000001000000010000000180298100000000000088010000FFFEFF0000000000000000000000000001000000010000000180278100000000000086010000FFFEFF0000000000000000000000000001000000010000000180288100000000000087010000FFFEFF00000000000000000000000000010000000100000001801D8100000000000080010000FFFEFF00000000000000000000000000010000000100000001801E8100000000040081010000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B8100000200000077010000FFFEFF00000000000000000000000000010000000100000001800C8100000200000078010000FFFEFF00000000000000000000000000010000000100000001805F860000020000008B010000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001801F8100000200000082010000FFFEFF0000000000000000000000000001000000010000000180208100000200000083010000FFFEFF0000000000000000000000000001000000010000000180468100000200000089010000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E003B030000</Buttons>
|
||||
</MFCToolBar-34051>
|
||||
<Pane-34051>
|
||||
<ID>34051</ID>
|
||||
|
@ -12,11 +12,11 @@
|
||||
<ByteLimit>50</ByteLimit>
|
||||
</Stack>
|
||||
<JLinkDriver>
|
||||
<jlinkResetStyle>12</jlinkResetStyle>
|
||||
<jlinkResetStrategy>0</jlinkResetStrategy>
|
||||
<TraceBufferSize>0x10000</TraceBufferSize>
|
||||
<TraceStallIfFIFOFull>0x0</TraceStallIfFIFOFull>
|
||||
<TracePortSize>0x4</TracePortSize>
|
||||
<jlinkResetStyle>12</jlinkResetStyle>
|
||||
<jlinkResetStrategy>0</jlinkResetStrategy>
|
||||
<LeaveTargetRunning>_ 0</LeaveTargetRunning>
|
||||
<CStepIntDis>_ 0</CStepIntDis>
|
||||
</JLinkDriver>
|
||||
@ -29,7 +29,7 @@
|
||||
<EnableCache>0</EnableCache>
|
||||
</ArmDriver>
|
||||
<DebugChecksum>
|
||||
<Checksum>3190234441</Checksum>
|
||||
<Checksum>3001005802</Checksum>
|
||||
</DebugChecksum>
|
||||
<Disassembly>
|
||||
<MixedMode>1</MixedMode>
|
||||
@ -74,8 +74,9 @@
|
||||
<ITMlogFile>$PROJ_DIR$\ITM.log</ITMlogFile>
|
||||
</SWOTraceHWSettings>
|
||||
<struct_types>
|
||||
<Fmt0>FlexCanRegType-MCR 4 0</Fmt0>
|
||||
<Fmt1>struct _AcgRegType_-PLL 4 0</Fmt1>
|
||||
<Fmt0>ClockDrvType-xtalClkFreq 3 0</Fmt0>
|
||||
<Fmt1>FlexCanRegType-MCR 4 0</Fmt1>
|
||||
<Fmt2>struct _AcgRegType_-PLL 4 0</Fmt2>
|
||||
</struct_types>
|
||||
<Trace2>
|
||||
<Enabled>0</Enabled>
|
||||
@ -150,7 +151,8 @@
|
||||
<mode>0</mode>
|
||||
</DisassembleMode>
|
||||
<Breakpoints2>
|
||||
<Count>0</Count>
|
||||
<Bp0>_ 1 "EMUL_CODE" "{$PROJ_DIR$\src\hwctrl.c}.90.5" 0 0 1 "" 0 "" 0</Bp0>
|
||||
<Count>1</Count>
|
||||
</Breakpoints2>
|
||||
<Aliases>
|
||||
<Count>0</Count>
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user