CARPLAY版本整理
This commit is contained in:
2
MXC_A27-PCB4.5-270T/proj/.gitignore
vendored
Normal file
2
MXC_A27-PCB4.5-270T/proj/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
AWTK/
|
||||
library/
|
21896
MXC_A27-PCB4.5-270T/proj/amt630hv100.dep
Normal file
21896
MXC_A27-PCB4.5-270T/proj/amt630hv100.dep
Normal file
File diff suppressed because it is too large
Load Diff
4420
MXC_A27-PCB4.5-270T/proj/amt630hv100.ewd
Normal file
4420
MXC_A27-PCB4.5-270T/proj/amt630hv100.ewd
Normal file
File diff suppressed because it is too large
Load Diff
5160
MXC_A27-PCB4.5-270T/proj/amt630hv100.ewp
Normal file
5160
MXC_A27-PCB4.5-270T/proj/amt630hv100.ewp
Normal file
File diff suppressed because it is too large
Load Diff
5341
MXC_A27-PCB4.5-270T/proj/amt630hv100.ewt
Normal file
5341
MXC_A27-PCB4.5-270T/proj/amt630hv100.ewt
Normal file
File diff suppressed because it is too large
Load Diff
36
MXC_A27-PCB4.5-270T/proj/amt630hv100.eww
Normal file
36
MXC_A27-PCB4.5-270T/proj/amt630hv100.eww
Normal file
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<workspace>
|
||||
<project>
|
||||
<path>$WS_DIR$\amt630hv100.ewp</path>
|
||||
</project>
|
||||
<project>
|
||||
<path>$WS_DIR$\awtk.ewp</path>
|
||||
</project>
|
||||
<project>
|
||||
<path>$WS_DIR$\lvgl.ewp</path>
|
||||
</project>
|
||||
<batchBuild>
|
||||
<batchDefinition>
|
||||
<name>amt630hv100-lvgl-DDR32X16</name>
|
||||
<member>
|
||||
<project>lvgl</project>
|
||||
<configuration>library</configuration>
|
||||
</member>
|
||||
<member>
|
||||
<project>amt630hv100</project>
|
||||
<configuration>DDR32X16</configuration>
|
||||
</member>
|
||||
</batchDefinition>
|
||||
<batchDefinition>
|
||||
<name>amt630hv100-awtk</name>
|
||||
<member>
|
||||
<project>awtk</project>
|
||||
<configuration>library</configuration>
|
||||
</member>
|
||||
<member>
|
||||
<project>amt630hv100</project>
|
||||
<configuration>AWTK</configuration>
|
||||
</member>
|
||||
</batchDefinition>
|
||||
</batchBuild>
|
||||
</workspace>
|
43
MXC_A27-PCB4.5-270T/proj/amt630hv100.icf
Normal file
43
MXC_A27-PCB4.5-270T/proj/amt630hv100.icf
Normal file
@ -0,0 +1,43 @@
|
||||
/*###ICF### Section handled by ICF editor, don't touch! ****/
|
||||
/*-Editor annotation file-*/
|
||||
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
|
||||
/*-Specials-*/
|
||||
define symbol __ICFEDIT_intvec_start__ = 0x20000000;
|
||||
/*-Memory Regions-*/
|
||||
define symbol __ICFEDIT_region_ROM_start__ = 0x20000080;
|
||||
define symbol __ICFEDIT_region_ROM_end__ = 0x2017ffff;
|
||||
define symbol __ICFEDIT_region_RAM_start__ = 0x20180000;
|
||||
define symbol __ICFEDIT_region_RAM_end__ = 0x20ffffff;
|
||||
/*-Sizes-*/
|
||||
define symbol __ICFEDIT_size_cstack__ = 0x4000;
|
||||
define symbol __ICFEDIT_size_svcstack__ = 0x4000;
|
||||
define symbol __ICFEDIT_size_irqstack__ = 0x2000;
|
||||
define symbol __ICFEDIT_size_fiqstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_undstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_abtstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_heap__ = 0;
|
||||
/**** End of ICF editor section. ###ICF###*/
|
||||
|
||||
|
||||
define memory mem with size = 4G;
|
||||
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
|
||||
define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
|
||||
|
||||
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
|
||||
define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
|
||||
define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
|
||||
define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
|
||||
define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
|
||||
define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
|
||||
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
|
||||
|
||||
initialize by copy { readwrite };
|
||||
//initialize by copy with packing = none { section __DLIB_PERTHREAD }; // Required in a multi-threaded application
|
||||
do not initialize { section .noinit };
|
||||
|
||||
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
||||
|
||||
place in ROM_region { readonly };
|
||||
place in RAM_region { readwrite,
|
||||
block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
|
||||
block UND_STACK, block ABT_STACK, block HEAP };
|
43
MXC_A27-PCB4.5-270T/proj/amt630hv100_awtk.icf
Normal file
43
MXC_A27-PCB4.5-270T/proj/amt630hv100_awtk.icf
Normal file
@ -0,0 +1,43 @@
|
||||
/*###ICF### Section handled by ICF editor, don't touch! ****/
|
||||
/*-Editor annotation file-*/
|
||||
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
|
||||
/*-Specials-*/
|
||||
define symbol __ICFEDIT_intvec_start__ = 0x20000000;
|
||||
/*-Memory Regions-*/
|
||||
define symbol __ICFEDIT_region_ROM_start__ = 0x20000080;
|
||||
define symbol __ICFEDIT_region_ROM_end__ = 0x20624fff;
|
||||
define symbol __ICFEDIT_region_RAM_start__ = 0x20625000;
|
||||
define symbol __ICFEDIT_region_RAM_end__ = 0x23ffffff;
|
||||
/*-Sizes-*/
|
||||
define symbol __ICFEDIT_size_cstack__ = 0x4000;
|
||||
define symbol __ICFEDIT_size_svcstack__ = 0x2000;
|
||||
define symbol __ICFEDIT_size_irqstack__ = 0x1000;
|
||||
define symbol __ICFEDIT_size_fiqstack__ = 0x200;
|
||||
define symbol __ICFEDIT_size_undstack__ = 0x200;
|
||||
define symbol __ICFEDIT_size_abtstack__ = 0x200;
|
||||
define symbol __ICFEDIT_size_heap__ = 0;
|
||||
/**** End of ICF editor section. ###ICF###*/
|
||||
|
||||
|
||||
define memory mem with size = 4G;
|
||||
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
|
||||
define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
|
||||
|
||||
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
|
||||
define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
|
||||
define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
|
||||
define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
|
||||
define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
|
||||
define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
|
||||
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
|
||||
|
||||
initialize by copy { readwrite };
|
||||
//initialize by copy with packing = none { section __DLIB_PERTHREAD }; // Required in a multi-threaded application
|
||||
do not initialize { section .noinit };
|
||||
|
||||
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
||||
|
||||
place in ROM_region { readonly };
|
||||
place in RAM_region { readwrite,
|
||||
block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
|
||||
block UND_STACK, block ABT_STACK, block HEAP };
|
43
MXC_A27-PCB4.5-270T/proj/amt630hv100_lvgl.icf
Normal file
43
MXC_A27-PCB4.5-270T/proj/amt630hv100_lvgl.icf
Normal file
@ -0,0 +1,43 @@
|
||||
/*###ICF### Section handled by ICF editor, don't touch! ****/
|
||||
/*-Editor annotation file-*/
|
||||
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
|
||||
/*-Specials-*/
|
||||
define symbol __ICFEDIT_intvec_start__ = 0x20000000;
|
||||
/*-Memory Regions-*/
|
||||
define symbol __ICFEDIT_region_ROM_start__ = 0x20000080;
|
||||
define symbol __ICFEDIT_region_ROM_end__ = 0x203fffff;
|
||||
define symbol __ICFEDIT_region_RAM_start__ = 0x20400000;
|
||||
define symbol __ICFEDIT_region_RAM_end__ = 0x23ffffff;
|
||||
/*-Sizes-*/
|
||||
define symbol __ICFEDIT_size_cstack__ = 0x4000;
|
||||
define symbol __ICFEDIT_size_svcstack__ = 0x4000;
|
||||
define symbol __ICFEDIT_size_irqstack__ = 0x2000;
|
||||
define symbol __ICFEDIT_size_fiqstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_undstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_abtstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_heap__ = 0;
|
||||
/**** End of ICF editor section. ###ICF###*/
|
||||
|
||||
|
||||
define memory mem with size = 4G;
|
||||
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
|
||||
define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
|
||||
|
||||
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
|
||||
define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
|
||||
define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
|
||||
define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
|
||||
define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
|
||||
define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
|
||||
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
|
||||
|
||||
initialize by copy { readwrite };
|
||||
//initialize by copy with packing = none { section __DLIB_PERTHREAD }; // Required in a multi-threaded application
|
||||
do not initialize { section .noinit };
|
||||
|
||||
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
||||
|
||||
place in ROM_region { readonly };
|
||||
place in RAM_region { readwrite,
|
||||
block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
|
||||
block UND_STACK, block ABT_STACK, block HEAP };
|
43
MXC_A27-PCB4.5-270T/proj/amt630hv100_vgonly.icf
Normal file
43
MXC_A27-PCB4.5-270T/proj/amt630hv100_vgonly.icf
Normal file
@ -0,0 +1,43 @@
|
||||
/*###ICF### Section handled by ICF editor, don't touch! ****/
|
||||
/*-Editor annotation file-*/
|
||||
/* IcfEditorFile="$TOOLKIT_DIR$\config\ide\IcfEditor\a_v1_0.xml" */
|
||||
/*-Specials-*/
|
||||
define symbol __ICFEDIT_intvec_start__ = 0x20000000;
|
||||
/*-Memory Regions-*/
|
||||
define symbol __ICFEDIT_region_ROM_start__ = 0x20000080;
|
||||
define symbol __ICFEDIT_region_ROM_end__ = 0x202fffff;
|
||||
define symbol __ICFEDIT_region_RAM_start__ = 0x20300000;
|
||||
define symbol __ICFEDIT_region_RAM_end__ = 0x23ffffff;
|
||||
/*-Sizes-*/
|
||||
define symbol __ICFEDIT_size_cstack__ = 0x4000;
|
||||
define symbol __ICFEDIT_size_svcstack__ = 0x4000;
|
||||
define symbol __ICFEDIT_size_irqstack__ = 0x2000;
|
||||
define symbol __ICFEDIT_size_fiqstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_undstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_abtstack__ = 0x400;
|
||||
define symbol __ICFEDIT_size_heap__ = 0;
|
||||
/**** End of ICF editor section. ###ICF###*/
|
||||
|
||||
|
||||
define memory mem with size = 4G;
|
||||
define region ROM_region = mem:[from __ICFEDIT_region_ROM_start__ to __ICFEDIT_region_ROM_end__];
|
||||
define region RAM_region = mem:[from __ICFEDIT_region_RAM_start__ to __ICFEDIT_region_RAM_end__];
|
||||
|
||||
define block CSTACK with alignment = 8, size = __ICFEDIT_size_cstack__ { };
|
||||
define block SVC_STACK with alignment = 8, size = __ICFEDIT_size_svcstack__ { };
|
||||
define block IRQ_STACK with alignment = 8, size = __ICFEDIT_size_irqstack__ { };
|
||||
define block FIQ_STACK with alignment = 8, size = __ICFEDIT_size_fiqstack__ { };
|
||||
define block UND_STACK with alignment = 8, size = __ICFEDIT_size_undstack__ { };
|
||||
define block ABT_STACK with alignment = 8, size = __ICFEDIT_size_abtstack__ { };
|
||||
define block HEAP with alignment = 8, size = __ICFEDIT_size_heap__ { };
|
||||
|
||||
initialize by copy { readwrite };
|
||||
//initialize by copy with packing = none { section __DLIB_PERTHREAD }; // Required in a multi-threaded application
|
||||
do not initialize { section .noinit };
|
||||
|
||||
place at address mem:__ICFEDIT_intvec_start__ { readonly section .intvec };
|
||||
|
||||
place in ROM_region { readonly };
|
||||
place in RAM_region { readwrite,
|
||||
block CSTACK, block SVC_STACK, block IRQ_STACK, block FIQ_STACK,
|
||||
block UND_STACK, block ABT_STACK, block HEAP };
|
10245
MXC_A27-PCB4.5-270T/proj/awtk.dep
Normal file
10245
MXC_A27-PCB4.5-270T/proj/awtk.dep
Normal file
File diff suppressed because it is too large
Load Diff
1476
MXC_A27-PCB4.5-270T/proj/awtk.ewd
Normal file
1476
MXC_A27-PCB4.5-270T/proj/awtk.ewd
Normal file
File diff suppressed because it is too large
Load Diff
4124
MXC_A27-PCB4.5-270T/proj/awtk.ewp
Normal file
4124
MXC_A27-PCB4.5-270T/proj/awtk.ewp
Normal file
File diff suppressed because it is too large
Load Diff
BIN
MXC_A27-PCB4.5-270T/proj/gen_checksum.exe
Normal file
BIN
MXC_A27-PCB4.5-270T/proj/gen_checksum.exe
Normal file
Binary file not shown.
13
MXC_A27-PCB4.5-270T/proj/lvgl.dep
Normal file
13
MXC_A27-PCB4.5-270T/proj/lvgl.dep
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project>
|
||||
<fileVersion>4</fileVersion>
|
||||
<fileChecksum>1425370873</fileChecksum>
|
||||
<configuration>
|
||||
<name>library</name>
|
||||
<outputs />
|
||||
<forcedrebuild>
|
||||
<name>[MULTI_TOOL]</name>
|
||||
<tool>IARCHIVE</tool>
|
||||
</forcedrebuild>
|
||||
</configuration>
|
||||
</project>
|
1476
MXC_A27-PCB4.5-270T/proj/lvgl.ewd
Normal file
1476
MXC_A27-PCB4.5-270T/proj/lvgl.ewd
Normal file
File diff suppressed because it is too large
Load Diff
1430
MXC_A27-PCB4.5-270T/proj/lvgl.ewp
Normal file
1430
MXC_A27-PCB4.5-270T/proj/lvgl.ewp
Normal file
File diff suppressed because it is too large
Load Diff
40
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.AWTK.cspy.bat
Normal file
40
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.AWTK.cspy.bat
Normal file
@ -0,0 +1,40 @@
|
||||
@REM This batch file has been generated by the IAR Embedded Workbench
|
||||
@REM C-SPY Debugger, as an aid to preparing a command line for running
|
||||
@REM the cspybat command line utility using the appropriate settings.
|
||||
@REM
|
||||
@REM Note that this file is generated every time a new debug session
|
||||
@REM is initialized, so you may want to move or rename the file before
|
||||
@REM making changes.
|
||||
@REM
|
||||
@REM You can launch cspybat by typing the name of this batch file followed
|
||||
@REM by the name of the debug file (usually an ELF/DWARF or UBROF file).
|
||||
@REM
|
||||
@REM Read about available command line parameters in the C-SPY Debugging
|
||||
@REM Guide. Hints about additional command line parameters that may be
|
||||
@REM useful in specific cases:
|
||||
@REM --download_only Downloads a code image without starting a debug
|
||||
@REM session afterwards.
|
||||
@REM --silent Omits the sign-on message.
|
||||
@REM --timeout Limits the maximum allowed execution time.
|
||||
@REM
|
||||
|
||||
|
||||
@echo off
|
||||
|
||||
if not "%~1" == "" goto debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"E:\IAR\common\bin\cspybat" -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\amt630hv100.AWTK.general.xcl" --backend -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\amt630hv100.AWTK.driver.xcl"
|
||||
|
||||
@echo off
|
||||
goto end
|
||||
|
||||
:debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"E:\IAR\common\bin\cspybat" -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\amt630hv100.AWTK.general.xcl" "--debug_file=%~1" --backend -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\amt630hv100.AWTK.driver.xcl"
|
||||
|
||||
@echo off
|
||||
:end
|
31
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.AWTK.cspy.ps1
Normal file
31
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.AWTK.cspy.ps1
Normal file
@ -0,0 +1,31 @@
|
||||
param([String]$debugfile = "");
|
||||
|
||||
# This powershell file has been generated by the IAR Embedded Workbench
|
||||
# C - SPY Debugger, as an aid to preparing a command line for running
|
||||
# the cspybat command line utility using the appropriate settings.
|
||||
#
|
||||
# Note that this file is generated every time a new debug session
|
||||
# is initialized, so you may want to move or rename the file before
|
||||
# making changes.
|
||||
#
|
||||
# You can launch cspybat by typing Powershell.exe -File followed by the name of this batch file, followed
|
||||
# by the name of the debug file (usually an ELF / DWARF or UBROF file).
|
||||
#
|
||||
# Read about available command line parameters in the C - SPY Debugging
|
||||
# Guide. Hints about additional command line parameters that may be
|
||||
# useful in specific cases :
|
||||
# --download_only Downloads a code image without starting a debug
|
||||
# session afterwards.
|
||||
# --silent Omits the sign - on message.
|
||||
# --timeout Limits the maximum allowed execution time.
|
||||
#
|
||||
|
||||
|
||||
if ($debugfile -eq "")
|
||||
{
|
||||
& "E:\IAR\common\bin\cspybat" -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\amt630hv100.AWTK.general.xcl" --backend -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\amt630hv100.AWTK.driver.xcl"
|
||||
}
|
||||
else
|
||||
{
|
||||
& "E:\IAR\common\bin\cspybat" -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\amt630hv100.AWTK.general.xcl" --debug_file=$debugfile --backend -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\amt630hv100.AWTK.driver.xcl"
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
"--endian=little"
|
||||
|
||||
"--cpu=Cortex-A5"
|
||||
|
||||
"--fpu=VFPv4Neon"
|
||||
|
||||
"--semihosting=none"
|
||||
|
||||
"--drv_communication=USB0"
|
||||
|
||||
"--drv_interface_speed=12000"
|
||||
|
||||
"--drv_catch_exceptions=0x000"
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,11 @@
|
||||
"E:\IAR\arm\bin\armproc.dll"
|
||||
|
||||
"E:\IAR\arm\bin\armjlink2.dll"
|
||||
|
||||
"G:\mengxun\MXC_A27-PCB4.5\proj\AWTK\Exe\amt630hv100.out"
|
||||
|
||||
--plugin="E:\IAR\arm\bin\armbat.dll"
|
||||
|
||||
|
||||
|
||||
|
40
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.LVGL.cspy.bat
Normal file
40
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.LVGL.cspy.bat
Normal file
@ -0,0 +1,40 @@
|
||||
@REM This batch file has been generated by the IAR Embedded Workbench
|
||||
@REM C-SPY Debugger, as an aid to preparing a command line for running
|
||||
@REM the cspybat command line utility using the appropriate settings.
|
||||
@REM
|
||||
@REM Note that this file is generated every time a new debug session
|
||||
@REM is initialized, so you may want to move or rename the file before
|
||||
@REM making changes.
|
||||
@REM
|
||||
@REM You can launch cspybat by typing the name of this batch file followed
|
||||
@REM by the name of the debug file (usually an ELF/DWARF or UBROF file).
|
||||
@REM
|
||||
@REM Read about available command line parameters in the C-SPY Debugging
|
||||
@REM Guide. Hints about additional command line parameters that may be
|
||||
@REM useful in specific cases:
|
||||
@REM --download_only Downloads a code image without starting a debug
|
||||
@REM session afterwards.
|
||||
@REM --silent Omits the sign-on message.
|
||||
@REM --timeout Limits the maximum allowed execution time.
|
||||
@REM
|
||||
|
||||
|
||||
@echo off
|
||||
|
||||
if not "%~1" == "" goto debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.1\common\bin\cspybat" -f "F:\bak\630v100\amt630hv100-freertos-20231124\proj\settings\amt630hv100.LVGL.general.xcl" --backend -f "F:\bak\630v100\amt630hv100-freertos-20231124\proj\settings\amt630hv100.LVGL.driver.xcl"
|
||||
|
||||
@echo off
|
||||
goto end
|
||||
|
||||
:debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.1\common\bin\cspybat" -f "F:\bak\630v100\amt630hv100-freertos-20231124\proj\settings\amt630hv100.LVGL.general.xcl" "--debug_file=%~1" --backend -f "F:\bak\630v100\amt630hv100-freertos-20231124\proj\settings\amt630hv100.LVGL.driver.xcl"
|
||||
|
||||
@echo off
|
||||
:end
|
31
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.LVGL.cspy.ps1
Normal file
31
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.LVGL.cspy.ps1
Normal file
@ -0,0 +1,31 @@
|
||||
param([String]$debugfile = "");
|
||||
|
||||
# This powershell file has been generated by the IAR Embedded Workbench
|
||||
# C - SPY Debugger, as an aid to preparing a command line for running
|
||||
# the cspybat command line utility using the appropriate settings.
|
||||
#
|
||||
# Note that this file is generated every time a new debug session
|
||||
# is initialized, so you may want to move or rename the file before
|
||||
# making changes.
|
||||
#
|
||||
# You can launch cspybat by typing Powershell.exe -File followed by the name of this batch file, followed
|
||||
# by the name of the debug file (usually an ELF / DWARF or UBROF file).
|
||||
#
|
||||
# Read about available command line parameters in the C - SPY Debugging
|
||||
# Guide. Hints about additional command line parameters that may be
|
||||
# useful in specific cases :
|
||||
# --download_only Downloads a code image without starting a debug
|
||||
# session afterwards.
|
||||
# --silent Omits the sign - on message.
|
||||
# --timeout Limits the maximum allowed execution time.
|
||||
#
|
||||
|
||||
|
||||
if ($debugfile -eq "")
|
||||
{
|
||||
& "C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.1\common\bin\cspybat" -f "F:\bak\630v100\amt630hv100-freertos-20231124\proj\settings\amt630hv100.LVGL.general.xcl" --backend -f "F:\bak\630v100\amt630hv100-freertos-20231124\proj\settings\amt630hv100.LVGL.driver.xcl"
|
||||
}
|
||||
else
|
||||
{
|
||||
& "C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.1\common\bin\cspybat" -f "F:\bak\630v100\amt630hv100-freertos-20231124\proj\settings\amt630hv100.LVGL.general.xcl" --debug_file=$debugfile --backend -f "F:\bak\630v100\amt630hv100-freertos-20231124\proj\settings\amt630hv100.LVGL.driver.xcl"
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
"--endian=little"
|
||||
|
||||
"--cpu=Cortex-A5"
|
||||
|
||||
"--fpu=VFPv4Neon"
|
||||
|
||||
"--semihosting=none"
|
||||
|
||||
"--drv_communication=USB0"
|
||||
|
||||
"--drv_interface_speed=auto"
|
||||
|
||||
"--jlink_initial_speed=1000"
|
||||
|
||||
"--drv_catch_exceptions=0x000"
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,11 @@
|
||||
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.1\arm\bin\armproc.dll"
|
||||
|
||||
"C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.1\arm\bin\armjlink2.dll"
|
||||
|
||||
"F:\bak\630v100\amt630hv100-freertos-20231124\proj\LVGL\Exe\amt630hv100.out"
|
||||
|
||||
--plugin="C:\Program Files (x86)\IAR Systems\Embedded Workbench 8.1\arm\bin\armbat.dll"
|
||||
|
||||
|
||||
|
||||
|
13
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.crun
Normal file
13
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.crun
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<crun>
|
||||
<version>1</version>
|
||||
<filter_entries>
|
||||
<filter index="0" type="default">
|
||||
<type>*</type>
|
||||
<start_file>*</start_file>
|
||||
<end_file>*</end_file>
|
||||
<action_debugger>0</action_debugger>
|
||||
<action_log>1</action_log>
|
||||
</filter>
|
||||
</filter_entries>
|
||||
</crun>
|
900
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.dbgdt
Normal file
900
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.dbgdt
Normal file
File diff suppressed because one or more lines are too long
95
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.dnx
Normal file
95
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.dnx
Normal file
@ -0,0 +1,95 @@
|
||||
<?xml version="1.0"?>
|
||||
<settings>
|
||||
<Stack>
|
||||
<FillEnabled>0</FillEnabled>
|
||||
<OverflowWarningsEnabled>1</OverflowWarningsEnabled>
|
||||
<WarningThreshold>90</WarningThreshold>
|
||||
<SpWarningsEnabled>1</SpWarningsEnabled>
|
||||
<WarnLogOnly>1</WarnLogOnly>
|
||||
<UseTrigger>1</UseTrigger>
|
||||
<TriggerName>main</TriggerName>
|
||||
<LimitSize>0</LimitSize>
|
||||
<ByteLimit>50</ByteLimit>
|
||||
</Stack>
|
||||
<JLinkDriver>
|
||||
<WatchCond>_ 0</WatchCond>
|
||||
<Watch0>_ 0 "" 0 "" 0 "" 0 "" 0 0 0 0</Watch0>
|
||||
<Watch1>_ 0 "" 0 "" 0 "" 0 "" 0 0 0 0</Watch1>
|
||||
<CStepIntDis>_ 0</CStepIntDis>
|
||||
<LeaveTargetRunning>_ 0</LeaveTargetRunning>
|
||||
</JLinkDriver>
|
||||
<DebugChecksum>
|
||||
<Checksum>1870603399</Checksum>
|
||||
</DebugChecksum>
|
||||
<Exceptions>
|
||||
<StopOnUncaught>_ 0</StopOnUncaught>
|
||||
<StopOnThrow>_ 0</StopOnThrow>
|
||||
</Exceptions>
|
||||
<CallStack>
|
||||
<ShowArgs>0</ShowArgs>
|
||||
</CallStack>
|
||||
<Disassembly>
|
||||
<MixedMode>1</MixedMode>
|
||||
</Disassembly>
|
||||
<TermIOLog>
|
||||
<LoggingEnabled>_ 0</LoggingEnabled>
|
||||
<LogFile>_ ""</LogFile>
|
||||
</TermIOLog>
|
||||
<LogFile>
|
||||
<LoggingEnabled>_ 0</LoggingEnabled>
|
||||
<LogFile>_ ""</LogFile>
|
||||
<Category>_ 0</Category>
|
||||
</LogFile>
|
||||
<CallStackLog>
|
||||
<Enabled>0</Enabled>
|
||||
</CallStackLog>
|
||||
<CallStackStripe>
|
||||
<ShowTiming>1</ShowTiming>
|
||||
</CallStackStripe>
|
||||
<DisassembleMode>
|
||||
<mode>0</mode>
|
||||
</DisassembleMode>
|
||||
<Breakpoints2>
|
||||
<Bp0>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\app\carlink\common\ark_network.c}.334.16" 0 0 1 "" 0 "" 0</Bp0>
|
||||
<Bp1>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.394.12" 0 0 1 "" 0 "" 0</Bp1>
|
||||
<Bp2>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.400.9" 0 0 1 "" 0 "" 0</Bp2>
|
||||
<Bp3>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.408.9" 0 0 1 "" 0 "" 0</Bp3>
|
||||
<Bp4>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.417.27" 0 0 1 "" 0 "" 0</Bp4>
|
||||
<Bp5>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.438.17" 0 0 1 "" 0 "" 0</Bp5>
|
||||
<Bp6>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.447.21" 0 0 1 "" 0 "" 0</Bp6>
|
||||
<Bp7>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.459.17" 0 0 1 "" 0 "" 0</Bp7>
|
||||
<Bp8>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.477.37" 0 0 1 "" 0 "" 0</Bp8>
|
||||
<Bp9>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.470.29" 0 0 1 "" 0 "" 0</Bp9>
|
||||
<Bp10>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.493.17" 0 0 1 "" 0 "" 0</Bp10>
|
||||
<Bp11>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.501.5" 0 0 1 "" 0 "" 0</Bp11>
|
||||
<Bp12>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.316.16" 0 0 1 "" 0 "" 0</Bp12>
|
||||
<Bp13>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.321.9" 0 0 1 "" 0 "" 0</Bp13>
|
||||
<Bp14>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.328.9" 0 0 1 "" 0 "" 0</Bp14>
|
||||
<Bp15>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.339.9" 0 0 1 "" 0 "" 0</Bp15>
|
||||
<Bp16>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.335.17" 0 0 1 "" 0 "" 0</Bp16>
|
||||
<Bp17>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.348.13" 0 0 1 "" 0 "" 0</Bp17>
|
||||
<Bp18>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.360.17" 0 0 1 "" 0 "" 0</Bp18>
|
||||
<Bp19>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.365.13" 0 0 1 "" 0 "" 0</Bp19>
|
||||
<Bp20>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.373.5" 0 0 1 "" 0 "" 0</Bp20>
|
||||
<Bp21>_ 0 "EMUL_CODE" "{$PROJ_DIR$\..\FreeRTOS-Plus\FreeRTOS-Plus-TCP\FreeRTOS_Sockets.c}.323.9" 0 0 1 "" 0 "" 0</Bp21>
|
||||
<Bp22>_ 1 "EMUL_CODE" "{$PROJ_DIR$\..\lib\lwip\src\api\sockets.c}.1988.5" 0 0 1 "" 0 "" 0</Bp22>
|
||||
<Count>23</Count>
|
||||
</Breakpoints2>
|
||||
<Aliases>
|
||||
<A0>_ "D:\work\amt630h-v100\amt630hV100-sdk-beta\amt630hv100-freertos\lib\awtk\awtk\src\base\bitmap.c" ""</A0>
|
||||
<A1>_ "D:\work\amt630h-v100\amt630hV100-sdk-beta\amt630hv100-freertos\lib\awtk\awtk\src\tkc\mem_allocator_pool.h" ""</A1>
|
||||
<A2>_ "E:\630hv100\amt630hV100-sdk-beta-20240626\amt630hv100-freertos\lib\wolfssl\wolfcrypt\src\aes.c" ""</A2>
|
||||
<A3>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\arch\XAQ2\hal\user\hwVg.c" ""</A3>
|
||||
<A4>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\driver\openVG\vg11\driver\vgMatrix.c" ""</A4>
|
||||
<A5>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\driver\openVG\vg11\driver\vgPaint.c" ""</A5>
|
||||
<A6>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\driver\openVG\vg11\driver\vgState.c" ""</A6>
|
||||
<A7>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\hal\kernel\gcCommand.c" ""</A7>
|
||||
<A8>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\hal\os\freertos\user\XM_Os.c" ""</A8>
|
||||
<A9>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\hal\user\gcBuffer.c" ""</A9>
|
||||
<A10>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\hal\user\gcHeap.c" ""</A10>
|
||||
<A11>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\VG_DRIVER_FREERTOS_10_4_3\software\VIVANTE_GAL_OpenVG_Src_drv\hal\user\gcVG.c" ""</A11>
|
||||
<A12>_ "E:\proj\HMI\SW\HMI_AWTK_SDK\nanovg\fontstash.h" ""</A12>
|
||||
<Count>13</Count>
|
||||
<SuppressDialog>1</SuppressDialog>
|
||||
</Aliases>
|
||||
</settings>
|
1
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.reggroups
Normal file
1
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.reggroups
Normal file
@ -0,0 +1 @@
|
||||
|
536
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.wsdt
Normal file
536
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100.wsdt
Normal file
File diff suppressed because one or more lines are too long
35
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100_AWTK.jlink
Normal file
35
MXC_A27-PCB4.5-270T/proj/settings/amt630hv100_AWTK.jlink
Normal file
@ -0,0 +1,35 @@
|
||||
[BREAKPOINTS]
|
||||
ForceImpTypeAny = 0
|
||||
ShowInfoWin = 1
|
||||
EnableFlashBP = 2
|
||||
BPDuringExecution = 0
|
||||
[CFI]
|
||||
CFISize = 0x00
|
||||
CFIAddr = 0x00
|
||||
[CPU]
|
||||
OverrideMemMap = 0
|
||||
AllowSimulation = 1
|
||||
ScriptFile=""
|
||||
[FLASH]
|
||||
CacheExcludeSize = 0x00
|
||||
CacheExcludeAddr = 0x00
|
||||
MinNumBytesFlashDL = 0
|
||||
SkipProgOnCRCMatch = 1
|
||||
VerifyDownload = 1
|
||||
AllowCaching = 1
|
||||
EnableFlashDL = 2
|
||||
Override = 0
|
||||
Device="UNSPECIFIED"
|
||||
[GENERAL]
|
||||
WorkRAMSize = 0x00
|
||||
WorkRAMAddr = 0x00
|
||||
RAMUsageLimit = 0x00
|
||||
[SWO]
|
||||
SWOLogFile=""
|
||||
[MEM]
|
||||
RdOverrideOrMask = 0x00
|
||||
RdOverrideAndMask = 0xFFFFFFFF
|
||||
RdOverrideAddr = 0xFFFFFFFF
|
||||
WrOverrideOrMask = 0x00
|
||||
WrOverrideAndMask = 0xFFFFFFFF
|
||||
WrOverrideAddr = 0xFFFFFFFF
|
13
MXC_A27-PCB4.5-270T/proj/settings/awtk.crun
Normal file
13
MXC_A27-PCB4.5-270T/proj/settings/awtk.crun
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<crun>
|
||||
<version>1</version>
|
||||
<filter_entries>
|
||||
<filter index="0" type="default">
|
||||
<type>*</type>
|
||||
<start_file>*</start_file>
|
||||
<end_file>*</end_file>
|
||||
<action_debugger>0</action_debugger>
|
||||
<action_log>1</action_log>
|
||||
</filter>
|
||||
</filter_entries>
|
||||
</crun>
|
4
MXC_A27-PCB4.5-270T/proj/settings/awtk.dbgdt
Normal file
4
MXC_A27-PCB4.5-270T/proj/settings/awtk.dbgdt
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0"?>
|
||||
<Project>
|
||||
<WindowStorage />
|
||||
</Project>
|
58
MXC_A27-PCB4.5-270T/proj/settings/awtk.dnx
Normal file
58
MXC_A27-PCB4.5-270T/proj/settings/awtk.dnx
Normal file
@ -0,0 +1,58 @@
|
||||
<?xml version="1.0"?>
|
||||
<settings>
|
||||
<Stack>
|
||||
<FillEnabled>0</FillEnabled>
|
||||
<OverflowWarningsEnabled>1</OverflowWarningsEnabled>
|
||||
<WarningThreshold>90</WarningThreshold>
|
||||
<SpWarningsEnabled>1</SpWarningsEnabled>
|
||||
<WarnLogOnly>1</WarnLogOnly>
|
||||
<UseTrigger>1</UseTrigger>
|
||||
<TriggerName>main</TriggerName>
|
||||
<LimitSize>0</LimitSize>
|
||||
<ByteLimit>50</ByteLimit>
|
||||
</Stack>
|
||||
<Trace1>
|
||||
<Enabled>0</Enabled>
|
||||
<ShowSource>1</ShowSource>
|
||||
</Trace1>
|
||||
<InterruptLog>
|
||||
<LogEnabled>0</LogEnabled>
|
||||
<GraphEnabled>0</GraphEnabled>
|
||||
<ShowTimeLog>1</ShowTimeLog>
|
||||
<SumEnabled>0</SumEnabled>
|
||||
<ShowTimeSum>1</ShowTimeSum>
|
||||
<SumSortOrder>0</SumSortOrder>
|
||||
</InterruptLog>
|
||||
<DataLog>
|
||||
<LogEnabled>0</LogEnabled>
|
||||
<GraphEnabled>0</GraphEnabled>
|
||||
<ShowTimeLog>1</ShowTimeLog>
|
||||
<SumEnabled>0</SumEnabled>
|
||||
<ShowTimeSum>1</ShowTimeSum>
|
||||
</DataLog>
|
||||
<DisassembleMode>
|
||||
<mode>0</mode>
|
||||
</DisassembleMode>
|
||||
<Breakpoints2>
|
||||
<Count>0</Count>
|
||||
</Breakpoints2>
|
||||
<Interrupts>
|
||||
<Enabled>1</Enabled>
|
||||
</Interrupts>
|
||||
<MemConfig>
|
||||
<Base>1</Base>
|
||||
<Manual>0</Manual>
|
||||
<Ddf>1</Ddf>
|
||||
<TypeViol>0</TypeViol>
|
||||
<Stop>1</Stop>
|
||||
</MemConfig>
|
||||
<Aliases>
|
||||
<Count>0</Count>
|
||||
<SuppressDialog>0</SuppressDialog>
|
||||
</Aliases>
|
||||
<Simulator>
|
||||
<Freq>10000000</Freq>
|
||||
<FreqHi>0</FreqHi>
|
||||
<MultiCoreRunAll>1</MultiCoreRunAll>
|
||||
</Simulator>
|
||||
</settings>
|
40
MXC_A27-PCB4.5-270T/proj/settings/awtk.library.cspy.bat
Normal file
40
MXC_A27-PCB4.5-270T/proj/settings/awtk.library.cspy.bat
Normal file
@ -0,0 +1,40 @@
|
||||
@REM This batch file has been generated by the IAR Embedded Workbench
|
||||
@REM C-SPY Debugger, as an aid to preparing a command line for running
|
||||
@REM the cspybat command line utility using the appropriate settings.
|
||||
@REM
|
||||
@REM Note that this file is generated every time a new debug session
|
||||
@REM is initialized, so you may want to move or rename the file before
|
||||
@REM making changes.
|
||||
@REM
|
||||
@REM You can launch cspybat by typing the name of this batch file followed
|
||||
@REM by the name of the debug file (usually an ELF/DWARF or UBROF file).
|
||||
@REM
|
||||
@REM Read about available command line parameters in the C-SPY Debugging
|
||||
@REM Guide. Hints about additional command line parameters that may be
|
||||
@REM useful in specific cases:
|
||||
@REM --download_only Downloads a code image without starting a debug
|
||||
@REM session afterwards.
|
||||
@REM --silent Omits the sign-on message.
|
||||
@REM --timeout Limits the maximum allowed execution time.
|
||||
@REM
|
||||
|
||||
|
||||
@echo off
|
||||
|
||||
if not "%~1" == "" goto debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"E:\IAR\common\bin\cspybat" -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\awtk.library.general.xcl" --backend -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\awtk.library.driver.xcl"
|
||||
|
||||
@echo off
|
||||
goto end
|
||||
|
||||
:debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"E:\IAR\common\bin\cspybat" -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\awtk.library.general.xcl" "--debug_file=%~1" --backend -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\awtk.library.driver.xcl"
|
||||
|
||||
@echo off
|
||||
:end
|
31
MXC_A27-PCB4.5-270T/proj/settings/awtk.library.cspy.ps1
Normal file
31
MXC_A27-PCB4.5-270T/proj/settings/awtk.library.cspy.ps1
Normal file
@ -0,0 +1,31 @@
|
||||
param([String]$debugfile = "");
|
||||
|
||||
# This powershell file has been generated by the IAR Embedded Workbench
|
||||
# C - SPY Debugger, as an aid to preparing a command line for running
|
||||
# the cspybat command line utility using the appropriate settings.
|
||||
#
|
||||
# Note that this file is generated every time a new debug session
|
||||
# is initialized, so you may want to move or rename the file before
|
||||
# making changes.
|
||||
#
|
||||
# You can launch cspybat by typing Powershell.exe -File followed by the name of this batch file, followed
|
||||
# by the name of the debug file (usually an ELF / DWARF or UBROF file).
|
||||
#
|
||||
# Read about available command line parameters in the C - SPY Debugging
|
||||
# Guide. Hints about additional command line parameters that may be
|
||||
# useful in specific cases :
|
||||
# --download_only Downloads a code image without starting a debug
|
||||
# session afterwards.
|
||||
# --silent Omits the sign - on message.
|
||||
# --timeout Limits the maximum allowed execution time.
|
||||
#
|
||||
|
||||
|
||||
if ($debugfile -eq "")
|
||||
{
|
||||
& "E:\IAR\common\bin\cspybat" -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\awtk.library.general.xcl" --backend -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\awtk.library.driver.xcl"
|
||||
}
|
||||
else
|
||||
{
|
||||
& "E:\IAR\common\bin\cspybat" -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\awtk.library.general.xcl" --debug_file=$debugfile --backend -f "G:\mengxun\MXC_A27-PCB4.5\proj\settings\awtk.library.driver.xcl"
|
||||
}
|
13
MXC_A27-PCB4.5-270T/proj/settings/awtk.library.driver.xcl
Normal file
13
MXC_A27-PCB4.5-270T/proj/settings/awtk.library.driver.xcl
Normal file
@ -0,0 +1,13 @@
|
||||
"--endian=little"
|
||||
|
||||
"--cpu=Cortex-A5"
|
||||
|
||||
"--fpu=VFPv4_D16"
|
||||
|
||||
"--semihosting=none"
|
||||
|
||||
"--multicore_nr_of_cores=1"
|
||||
|
||||
|
||||
|
||||
|
11
MXC_A27-PCB4.5-270T/proj/settings/awtk.library.general.xcl
Normal file
11
MXC_A27-PCB4.5-270T/proj/settings/awtk.library.general.xcl
Normal file
@ -0,0 +1,11 @@
|
||||
"E:\IAR\arm\bin\armproc.dll"
|
||||
|
||||
"E:\IAR\arm\bin\armsim2.dll"
|
||||
|
||||
"G:\mengxun\MXC_A27-PCB4.5\proj\library\Exe\awtk.out"
|
||||
|
||||
--plugin="E:\IAR\arm\bin\armbat.dll"
|
||||
|
||||
|
||||
|
||||
|
13
MXC_A27-PCB4.5-270T/proj/settings/lvgl.crun
Normal file
13
MXC_A27-PCB4.5-270T/proj/settings/lvgl.crun
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<crun>
|
||||
<version>1</version>
|
||||
<filter_entries>
|
||||
<filter index="0" type="default">
|
||||
<type>*</type>
|
||||
<start_file>*</start_file>
|
||||
<end_file>*</end_file>
|
||||
<action_debugger>0</action_debugger>
|
||||
<action_log>1</action_log>
|
||||
</filter>
|
||||
</filter_entries>
|
||||
</crun>
|
4
MXC_A27-PCB4.5-270T/proj/settings/lvgl.dbgdt
Normal file
4
MXC_A27-PCB4.5-270T/proj/settings/lvgl.dbgdt
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0"?>
|
||||
<Project>
|
||||
<WindowStorage />
|
||||
</Project>
|
58
MXC_A27-PCB4.5-270T/proj/settings/lvgl.dnx
Normal file
58
MXC_A27-PCB4.5-270T/proj/settings/lvgl.dnx
Normal file
@ -0,0 +1,58 @@
|
||||
<?xml version="1.0"?>
|
||||
<settings>
|
||||
<Stack>
|
||||
<FillEnabled>0</FillEnabled>
|
||||
<OverflowWarningsEnabled>1</OverflowWarningsEnabled>
|
||||
<WarningThreshold>90</WarningThreshold>
|
||||
<SpWarningsEnabled>1</SpWarningsEnabled>
|
||||
<WarnLogOnly>1</WarnLogOnly>
|
||||
<UseTrigger>1</UseTrigger>
|
||||
<TriggerName>main</TriggerName>
|
||||
<LimitSize>0</LimitSize>
|
||||
<ByteLimit>50</ByteLimit>
|
||||
</Stack>
|
||||
<Trace1>
|
||||
<Enabled>0</Enabled>
|
||||
<ShowSource>1</ShowSource>
|
||||
</Trace1>
|
||||
<InterruptLog>
|
||||
<LogEnabled>0</LogEnabled>
|
||||
<GraphEnabled>0</GraphEnabled>
|
||||
<ShowTimeLog>1</ShowTimeLog>
|
||||
<SumEnabled>0</SumEnabled>
|
||||
<ShowTimeSum>1</ShowTimeSum>
|
||||
<SumSortOrder>0</SumSortOrder>
|
||||
</InterruptLog>
|
||||
<DataLog>
|
||||
<LogEnabled>0</LogEnabled>
|
||||
<GraphEnabled>0</GraphEnabled>
|
||||
<ShowTimeLog>1</ShowTimeLog>
|
||||
<SumEnabled>0</SumEnabled>
|
||||
<ShowTimeSum>1</ShowTimeSum>
|
||||
</DataLog>
|
||||
<DisassembleMode>
|
||||
<mode>0</mode>
|
||||
</DisassembleMode>
|
||||
<Breakpoints2>
|
||||
<Count>0</Count>
|
||||
</Breakpoints2>
|
||||
<Interrupts>
|
||||
<Enabled>1</Enabled>
|
||||
</Interrupts>
|
||||
<MemConfig>
|
||||
<Base>1</Base>
|
||||
<Manual>0</Manual>
|
||||
<Ddf>1</Ddf>
|
||||
<TypeViol>0</TypeViol>
|
||||
<Stop>1</Stop>
|
||||
</MemConfig>
|
||||
<Aliases>
|
||||
<Count>0</Count>
|
||||
<SuppressDialog>0</SuppressDialog>
|
||||
</Aliases>
|
||||
<Simulator>
|
||||
<Freq>10000000</Freq>
|
||||
<FreqHi>0</FreqHi>
|
||||
<MultiCoreRunAll>1</MultiCoreRunAll>
|
||||
</Simulator>
|
||||
</settings>
|
40
MXC_A27-PCB4.5-270T/proj/settings/lvgl.library.cspy.bat
Normal file
40
MXC_A27-PCB4.5-270T/proj/settings/lvgl.library.cspy.bat
Normal file
@ -0,0 +1,40 @@
|
||||
@REM This batch file has been generated by the IAR Embedded Workbench
|
||||
@REM C-SPY Debugger, as an aid to preparing a command line for running
|
||||
@REM the cspybat command line utility using the appropriate settings.
|
||||
@REM
|
||||
@REM Note that this file is generated every time a new debug session
|
||||
@REM is initialized, so you may want to move or rename the file before
|
||||
@REM making changes.
|
||||
@REM
|
||||
@REM You can launch cspybat by typing the name of this batch file followed
|
||||
@REM by the name of the debug file (usually an ELF/DWARF or UBROF file).
|
||||
@REM
|
||||
@REM Read about available command line parameters in the C-SPY Debugging
|
||||
@REM Guide. Hints about additional command line parameters that may be
|
||||
@REM useful in specific cases:
|
||||
@REM --download_only Downloads a code image without starting a debug
|
||||
@REM session afterwards.
|
||||
@REM --silent Omits the sign-on message.
|
||||
@REM --timeout Limits the maximum allowed execution time.
|
||||
@REM
|
||||
|
||||
|
||||
@echo off
|
||||
|
||||
if not "%~1" == "" goto debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"D:\IAR 8.30.1\common\bin\cspybat" -f "D:\AWStudioProjects\MXC_A58\proj\settings\lvgl.library.general.xcl" --backend -f "D:\AWStudioProjects\MXC_A58\proj\settings\lvgl.library.driver.xcl"
|
||||
|
||||
@echo off
|
||||
goto end
|
||||
|
||||
:debugFile
|
||||
|
||||
@echo on
|
||||
|
||||
"D:\IAR 8.30.1\common\bin\cspybat" -f "D:\AWStudioProjects\MXC_A58\proj\settings\lvgl.library.general.xcl" "--debug_file=%~1" --backend -f "D:\AWStudioProjects\MXC_A58\proj\settings\lvgl.library.driver.xcl"
|
||||
|
||||
@echo off
|
||||
:end
|
31
MXC_A27-PCB4.5-270T/proj/settings/lvgl.library.cspy.ps1
Normal file
31
MXC_A27-PCB4.5-270T/proj/settings/lvgl.library.cspy.ps1
Normal file
@ -0,0 +1,31 @@
|
||||
param([String]$debugfile = "");
|
||||
|
||||
# This powershell file has been generated by the IAR Embedded Workbench
|
||||
# C - SPY Debugger, as an aid to preparing a command line for running
|
||||
# the cspybat command line utility using the appropriate settings.
|
||||
#
|
||||
# Note that this file is generated every time a new debug session
|
||||
# is initialized, so you may want to move or rename the file before
|
||||
# making changes.
|
||||
#
|
||||
# You can launch cspybat by typing Powershell.exe -File followed by the name of this batch file, followed
|
||||
# by the name of the debug file (usually an ELF / DWARF or UBROF file).
|
||||
#
|
||||
# Read about available command line parameters in the C - SPY Debugging
|
||||
# Guide. Hints about additional command line parameters that may be
|
||||
# useful in specific cases :
|
||||
# --download_only Downloads a code image without starting a debug
|
||||
# session afterwards.
|
||||
# --silent Omits the sign - on message.
|
||||
# --timeout Limits the maximum allowed execution time.
|
||||
#
|
||||
|
||||
|
||||
if ($debugfile -eq "")
|
||||
{
|
||||
& "D:\IAR 8.30.1\common\bin\cspybat" -f "D:\AWStudioProjects\MXC_A58\proj\settings\lvgl.library.general.xcl" --backend -f "D:\AWStudioProjects\MXC_A58\proj\settings\lvgl.library.driver.xcl"
|
||||
}
|
||||
else
|
||||
{
|
||||
& "D:\IAR 8.30.1\common\bin\cspybat" -f "D:\AWStudioProjects\MXC_A58\proj\settings\lvgl.library.general.xcl" --debug_file=$debugfile --backend -f "D:\AWStudioProjects\MXC_A58\proj\settings\lvgl.library.driver.xcl"
|
||||
}
|
13
MXC_A27-PCB4.5-270T/proj/settings/lvgl.library.driver.xcl
Normal file
13
MXC_A27-PCB4.5-270T/proj/settings/lvgl.library.driver.xcl
Normal file
@ -0,0 +1,13 @@
|
||||
"--endian=little"
|
||||
|
||||
"--cpu=Cortex-A5"
|
||||
|
||||
"--fpu=VFPv4_D16"
|
||||
|
||||
"--semihosting=none"
|
||||
|
||||
"--multicore_nr_of_cores=1"
|
||||
|
||||
|
||||
|
||||
|
11
MXC_A27-PCB4.5-270T/proj/settings/lvgl.library.general.xcl
Normal file
11
MXC_A27-PCB4.5-270T/proj/settings/lvgl.library.general.xcl
Normal file
@ -0,0 +1,11 @@
|
||||
"D:\IAR 8.30.1\arm\bin\armproc.dll"
|
||||
|
||||
"D:\IAR 8.30.1\arm\bin\armsim2.dll"
|
||||
|
||||
"D:\AWStudioProjects\MXC_A58\proj\library\Exe\lvgl.out"
|
||||
|
||||
--plugin="D:\IAR 8.30.1\arm\bin\armbat.dll"
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user