[修改] 增加freeRTOS
1. 版本FreeRTOSv202212.01,命名为kernel;
This commit is contained in:
43
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/README
vendored
Normal file
43
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/README
vendored
Normal file
@ -0,0 +1,43 @@
|
||||
wolfSSL Freescale CodeWarrior Project Files
|
||||
|
||||
This directory contains project files for Freescale CodeWarrior 10.6 with
|
||||
the Freescale GCC compiler. These project have been created to use MQX, RTCS,
|
||||
and MFS on the Freescale Kinetis K70 Tower System (TWRK70F120M).
|
||||
|
||||
Included Project Files
|
||||
-----------------------
|
||||
|
||||
1. wolfSSL library (/wolfssl)
|
||||
|
||||
Prior to building this project, uncomment the FREESCALE_MQX define
|
||||
located in:
|
||||
|
||||
<wolfssl_root>/wolfssl/wolfcrypt/settings.h
|
||||
|
||||
2. wolfCrypt Test App (/wolfcrypt_test)
|
||||
|
||||
3. wolfCrypt Benchmark App (/wolfcrypt_benchmark)
|
||||
|
||||
3. Example wolfSSL Client (/wolfssl_client)
|
||||
|
||||
4. Utility library (/util_lib)
|
||||
|
||||
This library is used by the wolfSSL example client project and wolfCrypt
|
||||
test app project for opening/closing the SD card, etc.
|
||||
|
||||
Importing into CodeWarrior Workspace
|
||||
------------------------------------
|
||||
|
||||
These projects can be imported into a CodeWarrior workspace using the standard
|
||||
"Import Project" feature. To import a project from CodeWarrior, follow
|
||||
these steps:
|
||||
|
||||
1. File -> Import
|
||||
2. General -> Existing Projects into Workspace
|
||||
3. Select Root Directory (browse to this "<wolfssl_root>/mqx" directory)
|
||||
4. Select desired projects -> Finish
|
||||
|
||||
Keep in mind that the projects above reference wolfSSL source files and header
|
||||
files with relative paths to the projects' current location in the
|
||||
<wolfssl_root>/mqx directory.
|
||||
|
||||
12
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/util_lib/Sources/include.am
vendored
Normal file
12
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/util_lib/Sources/include.am
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
# vim:ft=automake
|
||||
# All paths should be given relative to the root
|
||||
#
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/util_lib/.cproject \
|
||||
mqx/util_lib/.project
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/util_lib/Sources/util.c \
|
||||
mqx/util_lib/Sources/util.h
|
||||
|
||||
180
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/util_lib/Sources/util.c
vendored
Normal file
180
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/util_lib/Sources/util.c
vendored
Normal file
@ -0,0 +1,180 @@
|
||||
/* util.c */
|
||||
|
||||
#include <mqx.h>
|
||||
#include <bsp.h>
|
||||
#include <fio.h>
|
||||
#include <mfs.h>
|
||||
#include <sdcard.h>
|
||||
#include <spi.h>
|
||||
#include <part_mgr.h>
|
||||
|
||||
#include "util.h"
|
||||
|
||||
#if !BSPCFG_ENABLE_IO_SUBSYSTEM
|
||||
#error This application requires BSPCFG_ENABLE_IO_SUBSYSTEM defined \
|
||||
non-zero in user_config.h. Please recompile BSP with this option.
|
||||
#endif
|
||||
|
||||
#ifndef BSP_DEFAULT_IO_CHANNEL_DEFINED
|
||||
#error This application requires BSP_DEFAULT_IO_CHANNEL to be not \
|
||||
NULL. Please set corresponding BSPCFG_ENABLE_TTYx to non-zero \
|
||||
in user_config.h and recompile BSP with this option.
|
||||
#endif
|
||||
|
||||
#if defined BSP_SDCARD_ESDHC_CHANNEL
|
||||
#if ! BSPCFG_ENABLE_ESDHC
|
||||
#error This application requires BSPCFG_ENABLE_ESDHC defined \
|
||||
non-zero in user_config.h. Please recompile libraries with \
|
||||
this option.
|
||||
#endif
|
||||
#elif defined BSP_SDCARD_SDHC_CHANNEL
|
||||
#if ! BSPCFG_ENABLE_SDHC
|
||||
#error This application requires BSPCFG_ENABLE_SDHC defined \
|
||||
non-zero in user_config.h. Please recompile libraries with \
|
||||
this option.
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (BSP_SDCARD_SPI_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_SPI_CHANNEL
|
||||
#elif defined (BSP_SDCARD_ESDHC_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_ESDHC_CHANNEL
|
||||
#elif defined (BSP_SDCARD_SDHC_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_SDHC_CHANNEL
|
||||
#else
|
||||
#error "SDCARD low level communication device not defined!"
|
||||
#endif
|
||||
|
||||
int sdcard_open(MQX_FILE_PTR *com_handle, MQX_FILE_PTR *sdcard_handle,
|
||||
MQX_FILE_PTR *partman_handle, MQX_FILE_PTR *filesystem_handle,
|
||||
char *partman_name, char *filesystem_name)
|
||||
{
|
||||
_mqx_int error_code;
|
||||
_mqx_uint param;
|
||||
|
||||
/* Open low level communication device */
|
||||
*com_handle = fopen(SDCARD_COM_CHANNEL, NULL);
|
||||
|
||||
if (NULL == *com_handle) {
|
||||
printf("Error installing communication handle.\n");
|
||||
return -60;
|
||||
}
|
||||
|
||||
/* Install SD card device */
|
||||
error_code = _io_sdcard_install("sdcard:", (void *)&_bsp_sdcard0_init,
|
||||
*com_handle);
|
||||
if (error_code != MQX_OK) {
|
||||
printf("Error installing SD card device (0x%x)\n", error_code);
|
||||
return -61;
|
||||
}
|
||||
|
||||
_time_delay(200);
|
||||
|
||||
/* Open the device which MFS will be installed on */
|
||||
*sdcard_handle = fopen("sdcard:", 0);
|
||||
if (*sdcard_handle == NULL) {
|
||||
printf("Unable to open SD card device.\n");
|
||||
return -62;
|
||||
}
|
||||
|
||||
/* Install partition manager over SD card driver */
|
||||
error_code = _io_part_mgr_install(*sdcard_handle, partman_name, 0);
|
||||
if (error_code != MFS_NO_ERROR) {
|
||||
printf("Error installing partition manager: %s\n", MFS_Error_text(
|
||||
(uint32_t) error_code));
|
||||
return -63;
|
||||
}
|
||||
|
||||
/* Open partition manager */
|
||||
*partman_handle = fopen(partman_name, NULL);
|
||||
if (*partman_handle == NULL) {
|
||||
error_code = ferror(*partman_handle);
|
||||
printf("Error opening partition manager: %s\n", MFS_Error_text(
|
||||
(uint32_t) error_code));
|
||||
return -64;
|
||||
}
|
||||
|
||||
/* Validate partition 1 */
|
||||
param = 1;
|
||||
error_code = _io_ioctl(*partman_handle, IO_IOCTL_VAL_PART, ¶m);
|
||||
if (error_code == MQX_OK) {
|
||||
/* Install MFS over partition 1 */
|
||||
error_code = _io_mfs_install(*partman_handle, filesystem_name, param);
|
||||
if (error_code != MFS_NO_ERROR) {
|
||||
printf("Error initializing MFS over partition: %s\n",
|
||||
MFS_Error_text((uint32_t) error_code));
|
||||
return -65;
|
||||
}
|
||||
|
||||
} else {
|
||||
/* Install MFS over SD card driver */
|
||||
error_code = _io_mfs_install(*sdcard_handle, filesystem_name,
|
||||
(_file_size) 0);
|
||||
if (error_code != MFS_NO_ERROR) {
|
||||
printf("Error initializing MFS: %s\n", MFS_Error_text(
|
||||
(uint32_t) error_code));
|
||||
return -66;
|
||||
}
|
||||
} /* end Validate partition 1 */
|
||||
|
||||
/* Open file system */
|
||||
*filesystem_handle = fopen(filesystem_name, NULL);
|
||||
error_code = ferror(*filesystem_handle);
|
||||
if ((error_code != MFS_NO_ERROR) && (error_code != MFS_NOT_A_DOS_DISK)) {
|
||||
printf("Error opening filesystem: %s\n", MFS_Error_text(
|
||||
(uint32_t) error_code));
|
||||
return -67;
|
||||
}
|
||||
if (error_code == MFS_NOT_A_DOS_DISK) {
|
||||
printf("NOT A DOS DISK! You must format to continue.\n");
|
||||
return -68;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sdcard_close(MQX_FILE_PTR *sdcard_handle, MQX_FILE_PTR *partman_handle,
|
||||
MQX_FILE_PTR *filesystem_handle,
|
||||
char *partman_name, char *filesystem_name)
|
||||
{
|
||||
_mqx_int error_code;
|
||||
|
||||
/* Close the filesystem */
|
||||
if (MQX_OK != fclose(*filesystem_handle)) {
|
||||
printf("Error closing filesystem.\n");
|
||||
return -69;
|
||||
}
|
||||
*filesystem_handle = NULL;
|
||||
|
||||
/* Uninstall MFS */
|
||||
error_code = _io_dev_uninstall(filesystem_name);
|
||||
if (error_code != MFS_NO_ERROR) {
|
||||
printf("Error uninstalling filesystem.\n");
|
||||
return -70;
|
||||
}
|
||||
|
||||
/* Close partition manager */
|
||||
if (MQX_OK != fclose(*partman_handle)) {
|
||||
printf("Unable to close partition manager.\n");
|
||||
return -71;
|
||||
}
|
||||
*partman_handle = NULL;
|
||||
|
||||
/* Uninstall partition manager */
|
||||
error_code = _io_dev_uninstall(partman_name);
|
||||
if (error_code != MFS_NO_ERROR) {
|
||||
printf("Error uninstalling partition manager.\n");
|
||||
return -72;
|
||||
}
|
||||
|
||||
/* Close the SD card device */
|
||||
if (MQX_OK != fclose(*sdcard_handle)) {
|
||||
printf("Unable to close SD card device.\n");
|
||||
return -73;
|
||||
}
|
||||
*sdcard_handle = NULL;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
14
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/util_lib/Sources/util.h
vendored
Normal file
14
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/util_lib/Sources/util.h
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
/* util.h */
|
||||
|
||||
#ifndef UTIL_H_
|
||||
#define UTIL_H_
|
||||
|
||||
int sdcard_open(MQX_FILE_PTR *com_handle, MQX_FILE_PTR *sdcard_handle,
|
||||
MQX_FILE_PTR *partman_handle, MQX_FILE_PTR *filesystem_handle,
|
||||
char *partman_name, char *filesystem_name);
|
||||
|
||||
int sdcard_close(MQX_FILE_PTR *sdcard_handle, MQX_FILE_PTR *partman_handle,
|
||||
MQX_FILE_PTR *filesystem_handle,
|
||||
char *partman_name, char *filesystem_name);
|
||||
|
||||
#endif /* UTIL_H_ */
|
||||
43
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Debugger/K70FN1M0.mem
vendored
Executable file
43
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Debugger/K70FN1M0.mem
vendored
Executable file
@ -0,0 +1,43 @@
|
||||
// Memory Configuration File
|
||||
//
|
||||
// Description:
|
||||
// A memory configuration file contains commands that define the legally accessible
|
||||
// areas of memory for your specific board. Useful for example when the debugger
|
||||
// tries to display the content of a "char *" variable, that has not yet been initialized.
|
||||
// In this case the debugger may try to read from a bogus address, which could cause a
|
||||
// bus error.
|
||||
//
|
||||
// Board:
|
||||
// Kinetis K70FN1M0
|
||||
//
|
||||
// Reference:
|
||||
// -
|
||||
|
||||
|
||||
// All reserved ranges read back 0xBABA...
|
||||
reservedchar 0xBA
|
||||
|
||||
usederivative "MK70F15"
|
||||
|
||||
// Memory Map:
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
range 0x00000000 0x000FFFFF 4 ReadWrite // 1024KB Code Flash
|
||||
reserved 0x00100000 0x13FFFFFF
|
||||
range 0x14000000 0x14003FFF 4 ReadWrite // 16KB Programming acceleration RAM
|
||||
reserved 0x14004000 0x1FFEFFFF
|
||||
range 0x1FFF0000 0x1FFFFFFF 4 ReadWrite // 64KB On chip SRAM (TCML)
|
||||
range 0x20000000 0x2000FFFF 4 ReadWrite // 64KB On chip SRAM (TCMU)
|
||||
reserved 0x20010000 0x21FFFFFF
|
||||
range 0x22000000 0x221FFFFF 4 ReadWrite // Aliased to TCMU SRAM bitband
|
||||
reserved 0x22200000 0x3FFFFFFF
|
||||
reserved 0x60000000 0x6FFFFFFF // Flexbus for external memory
|
||||
range 0x70000000 0x7FFFFFFF 4 ReadWrite // DRAM Controller - Write-back
|
||||
range 0x80000000 0x8FFFFFFF 4 ReadWrite // DRAM Controller - Write-through
|
||||
reserved 0x90000000 0xDFFFFFFF // Flexbus for external memory
|
||||
reserved 0xE0100000 0xFFFFFFFF
|
||||
|
||||
// Comment the following line for NFC-projects
|
||||
reserved 0x400A8000 0x400ABEFF
|
||||
// Uncomment the following line for NFC-projects
|
||||
//range 0x400A8000 0x400ABEFF 4 ReadWrite
|
||||
71
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Debugger/init_kinetis.tcl
vendored
Executable file
71
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Debugger/init_kinetis.tcl
vendored
Executable file
@ -0,0 +1,71 @@
|
||||
# this method initializes debug modules which are not affected by software reset
|
||||
# register names should be referenced including the register group name to improve performance
|
||||
|
||||
proc init_debug_modules {} {
|
||||
# initialize LR to avoid invalid stack after reset
|
||||
reg "User\\/System Mode Registers/LR" = 0xFFFFFFFF
|
||||
|
||||
# clear DWT function registers
|
||||
reg "Core Debug Registers/DEMCR" = 0x1000001
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION0" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION1" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION2" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION3" = 0x0
|
||||
# clear FPB comparators
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP0" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP1" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP2" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP3" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP4" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP5" = 0x0
|
||||
}
|
||||
|
||||
proc init_trace_modules {} {
|
||||
# clear DWT registers
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CTRL" =0x40000000
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CYCCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CPICNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_EXCCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_SLEEPCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_LSUCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FOLDCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP0" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP1" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP2" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP3" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK0" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK1" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK2" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK3" =0x0
|
||||
# clear ITM registers
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_LAR" =0xc5acce55
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TER" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TPR" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TCR" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_LAR" =0x1
|
||||
# reset Funnel registers
|
||||
reg "Embedded Trace Funnel Registers/ETF_FCR" =0x300
|
||||
# clear MCM registers
|
||||
reg "Core Platform Miscellaneous Control Module (MCM) Registers/MCM_ETBCC" =0x0
|
||||
reg "Core Platform Miscellaneous Control Module (MCM) Registers/MCM_ETBRL" =0x0
|
||||
# set SCB_VTOR register for RAM
|
||||
reg "System Control Registers/SCB_VTOR" =0x20000000
|
||||
}
|
||||
|
||||
proc envsetup {} {
|
||||
# Environment Setup
|
||||
radix x
|
||||
config hexprefix 0x
|
||||
config MemIdentifier p
|
||||
config MemWidth 32
|
||||
config MemAccess 32
|
||||
config MemSwap off
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Main
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
envsetup
|
||||
init_debug_modules
|
||||
init_trace_modules
|
||||
31
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Debugger/mass_erase_kinetis.tcl
vendored
Executable file
31
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Debugger/mass_erase_kinetis.tcl
vendored
Executable file
@ -0,0 +1,31 @@
|
||||
# This script performs the mass erase operation for Kinetis targets
|
||||
|
||||
# Command mass erase with system reset and core reset
|
||||
set mdmapControl [cmdwin::reg MDMAP_C -np]
|
||||
set mdmapControl [expr $mdmapControl | 0x19]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
|
||||
# Release system reset while still holding core reset
|
||||
set mdmapControl [expr $mdmapControl & 0xFFFFFFF7]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
|
||||
# Wait for the mass erase operation to complete
|
||||
set done 0
|
||||
for {set i 0} {$i < 10} {incr i} {
|
||||
refresh
|
||||
set mdmapControl [cmdwin::reg MDMAP_C -np]
|
||||
if {($mdmapControl & 1) == 0} {
|
||||
set done 1
|
||||
break;
|
||||
}
|
||||
wait 50
|
||||
}
|
||||
|
||||
# Release the core reset
|
||||
set mdmapControl [expr $mdmapControl & 0xFFFFFFEF]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
if {$done} {
|
||||
puts "OK: Mass erase succeeded"
|
||||
} else {
|
||||
puts "Error: Timeout"
|
||||
}
|
||||
296
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/ReferencedRSESystems.xml
vendored
Executable file
296
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/ReferencedRSESystems.xml
vendored
Executable file
@ -0,0 +1,296 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- This file stores a copy of all RSE Systems referenced by the project
|
||||
so the systems can be automatically recreated when the project is imported in a new workspace.
|
||||
This file is automatically generated and updated by the Eclipse IDE.-->
|
||||
<APSC_Memento>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.proj.wolfcrypt_benchmark" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.proj.wolfcrypt_benchmark"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.proj.wolfcrypt_benchmark" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.proj.wolfcrypt_benchmark"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_JTrace.proj.wolfcrypt_benchmark" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_JTrace.proj.wolfcrypt_benchmark"/>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.proj.wolfcrypt_benchmark" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.proj.wolfcrypt_benchmark"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<property key="propertySet.[cw.dbg.main].templateId" value="None"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1410292099859"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.proj.wolfcrypt_benchmark" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.proj.wolfcrypt_benchmark"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
</APSC_Memento>
|
||||
22
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Sources/include.am
vendored
Executable file
22
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Sources/include.am
vendored
Executable file
@ -0,0 +1,22 @@
|
||||
# vim:ft=automake
|
||||
# All paths should be given relative to the root
|
||||
#
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/wolfcrypt_benchmark/.cproject \
|
||||
mqx/wolfcrypt_benchmark/.project \
|
||||
mqx/wolfcrypt_benchmark/Debugger/K70FN1M0.mem \
|
||||
mqx/wolfcrypt_benchmark/Debugger/init_kinetis.tcl \
|
||||
mqx/wolfcrypt_benchmark/Debugger/mass_erase_kinetis.tcl \
|
||||
mqx/wolfcrypt_benchmark/ReferencedRSESystems.xml \
|
||||
mqx/wolfcrypt_benchmark/wolfcrypt_benchmark_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.launch \
|
||||
mqx/wolfcrypt_benchmark/wolfcrypt_benchmark_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.launch \
|
||||
mqx/wolfcrypt_benchmark/wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_JTrace.jlink \
|
||||
mqx/wolfcrypt_benchmark/wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_JTrace.launch \
|
||||
mqx/wolfcrypt_benchmark/wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.launch \
|
||||
mqx/wolfcrypt_benchmark/wolfcrypt_benchmark_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.launch
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/wolfcrypt_benchmark/Sources/main.c \
|
||||
mqx/wolfcrypt_benchmark/Sources/main.h
|
||||
|
||||
94
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Sources/main.c
vendored
Normal file
94
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Sources/main.c
vendored
Normal file
@ -0,0 +1,94 @@
|
||||
/* main.c */
|
||||
|
||||
#include "main.h"
|
||||
|
||||
/* SD card open/close utility functions */
|
||||
#include "util.h"
|
||||
|
||||
#if !BSPCFG_ENABLE_IO_SUBSYSTEM
|
||||
#error This application requires BSPCFG_ENABLE_IO_SUBSYSTEM defined \
|
||||
non-zero in user_config.h. Please recompile BSP with this option.
|
||||
#endif
|
||||
|
||||
#ifndef BSP_DEFAULT_IO_CHANNEL_DEFINED
|
||||
#error This application requires BSP_DEFAULT_IO_CHANNEL to be not NULL. \
|
||||
Please set corresponding BSPCFG_ENABLE_TTYx to non-zero in \
|
||||
user_config.h and recompile BSP with this option.
|
||||
#endif
|
||||
|
||||
TASK_TEMPLATE_STRUCT MQX_template_list[] =
|
||||
{
|
||||
/* Task number, Entry point, Stack, Pri, String, Auto? */
|
||||
{MAIN_TASK, Main_task, 30000, 9, "main", MQX_AUTO_START_TASK},
|
||||
{0, 0, 0, 0, 0, 0, }
|
||||
};
|
||||
|
||||
#if defined BSP_SDCARD_ESDHC_CHANNEL
|
||||
#if ! BSPCFG_ENABLE_ESDHC
|
||||
#error This application requires BSPCFG_ENABLE_ESDHC defined \
|
||||
non-zero in user_config.h. Please recompile libraries with \
|
||||
this option.
|
||||
#endif
|
||||
|
||||
#elif defined BSP_SDCARD_SDHC_CHANNEL
|
||||
#if ! BSPCFG_ENABLE_SDHC
|
||||
#error This application requires BSPCFG_ENABLE_SDHC defined \
|
||||
non-zero in user_config.h. Please recompile libraries with \
|
||||
this option.
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (BSP_SDCARD_SPI_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_SPI_CHANNEL
|
||||
#elif defined (BSP_SDCARD_ESDHC_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_ESDHC_CHANNEL
|
||||
#elif defined (BSP_SDCARD_SDHC_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_SDHC_CHANNEL
|
||||
#else
|
||||
#error "SDCARD low level communication device not defined!"
|
||||
#endif
|
||||
|
||||
/* func_args from test.h */
|
||||
typedef struct func_args {
|
||||
int argc;
|
||||
char** argv;
|
||||
int return_code;
|
||||
} func_args;
|
||||
|
||||
/*TASK*-----------------------------------------------------------------
|
||||
* Function Name : Main_task
|
||||
* Comments :
|
||||
* This task opens the SD card device and runs the
|
||||
* wolfCrypt benchmark functions located in benchmark.c.
|
||||
*END------------------------------------------------------------------*/
|
||||
|
||||
void Main_task(uint32_t initial_data)
|
||||
{
|
||||
int ret = 0;
|
||||
func_args args;
|
||||
char filesystem_name[] = "a:";
|
||||
char partman_name[] = "pm:";
|
||||
MQX_FILE_PTR com_handle, sdcard_handle, filesystem_handle, partman_handle;
|
||||
|
||||
ret = sdcard_open(&com_handle, &sdcard_handle, &partman_handle,
|
||||
&filesystem_handle, partman_name, filesystem_name);
|
||||
if (ret != 0) {
|
||||
printf("error: sdcard_open(), ret = %d\n", ret);
|
||||
_mqx_exit(1);
|
||||
}
|
||||
printf("SD card installed to %s\n", filesystem_name);
|
||||
|
||||
benchmark_test(&args);
|
||||
|
||||
ret = sdcard_close(&sdcard_handle, &partman_handle,
|
||||
&filesystem_handle, partman_name, filesystem_name);
|
||||
if (ret != 0) {
|
||||
printf("error: sdcard_close(), ret = %d\n", ret);
|
||||
_mqx_exit(1);
|
||||
}
|
||||
printf("SD card uninstalled.\n");
|
||||
|
||||
_mqx_exit(0);
|
||||
|
||||
}
|
||||
|
||||
20
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Sources/main.h
vendored
Normal file
20
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_benchmark/Sources/main.h
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/* main.h */
|
||||
|
||||
#ifndef __main_h_
|
||||
#define __main_h_
|
||||
|
||||
#include <mqx.h>
|
||||
#include <bsp.h>
|
||||
#include <fio.h>
|
||||
#include <mfs.h>
|
||||
#include <sdcard.h>
|
||||
#include <spi.h>
|
||||
#include <part_mgr.h>
|
||||
|
||||
#define MAIN_TASK 1
|
||||
|
||||
extern void Main_task (uint32_t);
|
||||
int benchmark_test(void* args);
|
||||
|
||||
#endif /* __main_h_ */
|
||||
|
||||
@ -0,0 +1,133 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_DDRData_Debug/wolfcrypt_benchmark.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_benchmark"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.685476017"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_benchmark"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,133 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.1"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_DDRData_Release/wolfcrypt_benchmark.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_benchmark"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.14851640"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_benchmark"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,34 @@
|
||||
[BREAKPOINTS]
|
||||
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
|
||||
@ -0,0 +1,182 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.FORMAT" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?><contentList/>"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.GLOBAL_VARIABLES" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <globalVariableList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.MEMORY_BLOCKS" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <memoryBlockExpressionList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Debug/wolfcrypt_benchmark.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_benchmark"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.1358518006"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_benchmark"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
<stringAttribute key="process_factory_id" value="com.freescale.cdt.debug.cw.core.ProcessFactoryID"/>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,182 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.FORMAT" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?><contentList/>"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.GLOBAL_VARIABLES" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <globalVariableList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.MEMORY_BLOCKS" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <memoryBlockExpressionList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Debug/wolfcrypt_benchmark.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_benchmark"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.1358518006"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_benchmark"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
<stringAttribute key="process_factory_id" value="com.freescale.cdt.debug.cw.core.ProcessFactoryID"/>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.3"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Release/wolfcrypt_benchmark.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_benchmark"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.99688619"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_benchmark"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
</launchConfiguration>
|
||||
43
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Debugger/K70FN1M0.mem
vendored
Executable file
43
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Debugger/K70FN1M0.mem
vendored
Executable file
@ -0,0 +1,43 @@
|
||||
// Memory Configuration File
|
||||
//
|
||||
// Description:
|
||||
// A memory configuration file contains commands that define the legally accessible
|
||||
// areas of memory for your specific board. Useful for example when the debugger
|
||||
// tries to display the content of a "char *" variable, that has not yet been initialized.
|
||||
// In this case the debugger may try to read from a bogus address, which could cause a
|
||||
// bus error.
|
||||
//
|
||||
// Board:
|
||||
// Kinetis K70FN1M0
|
||||
//
|
||||
// Reference:
|
||||
// -
|
||||
|
||||
|
||||
// All reserved ranges read back 0xBABA...
|
||||
reservedchar 0xBA
|
||||
|
||||
usederivative "MK70F15"
|
||||
|
||||
// Memory Map:
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
range 0x00000000 0x000FFFFF 4 ReadWrite // 1024KB Code Flash
|
||||
reserved 0x00100000 0x13FFFFFF
|
||||
range 0x14000000 0x14003FFF 4 ReadWrite // 16KB Programming acceleration RAM
|
||||
reserved 0x14004000 0x1FFEFFFF
|
||||
range 0x1FFF0000 0x1FFFFFFF 4 ReadWrite // 64KB On chip SRAM (TCML)
|
||||
range 0x20000000 0x2000FFFF 4 ReadWrite // 64KB On chip SRAM (TCMU)
|
||||
reserved 0x20010000 0x21FFFFFF
|
||||
range 0x22000000 0x221FFFFF 4 ReadWrite // Aliased to TCMU SRAM bitband
|
||||
reserved 0x22200000 0x3FFFFFFF
|
||||
reserved 0x60000000 0x6FFFFFFF // Flexbus for external memory
|
||||
range 0x70000000 0x7FFFFFFF 4 ReadWrite // DRAM Controller - Write-back
|
||||
range 0x80000000 0x8FFFFFFF 4 ReadWrite // DRAM Controller - Write-through
|
||||
reserved 0x90000000 0xDFFFFFFF // Flexbus for external memory
|
||||
reserved 0xE0100000 0xFFFFFFFF
|
||||
|
||||
// Comment the following line for NFC-projects
|
||||
reserved 0x400A8000 0x400ABEFF
|
||||
// Uncomment the following line for NFC-projects
|
||||
//range 0x400A8000 0x400ABEFF 4 ReadWrite
|
||||
71
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Debugger/init_kinetis.tcl
vendored
Executable file
71
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Debugger/init_kinetis.tcl
vendored
Executable file
@ -0,0 +1,71 @@
|
||||
# this method initializes debug modules which are not affected by software reset
|
||||
# register names should be referenced including the register group name to improve performance
|
||||
|
||||
proc init_debug_modules {} {
|
||||
# initialize LR to avoid invalid stack after reset
|
||||
reg "User\\/System Mode Registers/LR" = 0xFFFFFFFF
|
||||
|
||||
# clear DWT function registers
|
||||
reg "Core Debug Registers/DEMCR" = 0x1000001
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION0" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION1" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION2" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION3" = 0x0
|
||||
# clear FPB comparators
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP0" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP1" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP2" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP3" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP4" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP5" = 0x0
|
||||
}
|
||||
|
||||
proc init_trace_modules {} {
|
||||
# clear DWT registers
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CTRL" =0x40000000
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CYCCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CPICNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_EXCCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_SLEEPCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_LSUCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FOLDCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP0" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP1" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP2" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP3" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK0" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK1" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK2" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK3" =0x0
|
||||
# clear ITM registers
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_LAR" =0xc5acce55
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TER" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TPR" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TCR" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_LAR" =0x1
|
||||
# reset Funnel registers
|
||||
reg "Embedded Trace Funnel Registers/ETF_FCR" =0x300
|
||||
# clear MCM registers
|
||||
reg "Core Platform Miscellaneous Control Module (MCM) Registers/MCM_ETBCC" =0x0
|
||||
reg "Core Platform Miscellaneous Control Module (MCM) Registers/MCM_ETBRL" =0x0
|
||||
# set SCB_VTOR register for RAM
|
||||
reg "System Control Registers/SCB_VTOR" =0x20000000
|
||||
}
|
||||
|
||||
proc envsetup {} {
|
||||
# Environment Setup
|
||||
radix x
|
||||
config hexprefix 0x
|
||||
config MemIdentifier p
|
||||
config MemWidth 32
|
||||
config MemAccess 32
|
||||
config MemSwap off
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Main
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
envsetup
|
||||
init_debug_modules
|
||||
init_trace_modules
|
||||
31
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Debugger/mass_erase_kinetis.tcl
vendored
Executable file
31
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Debugger/mass_erase_kinetis.tcl
vendored
Executable file
@ -0,0 +1,31 @@
|
||||
# This script performs the mass erase operation for Kinetis targets
|
||||
|
||||
# Command mass erase with system reset and core reset
|
||||
set mdmapControl [cmdwin::reg MDMAP_C -np]
|
||||
set mdmapControl [expr $mdmapControl | 0x19]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
|
||||
# Release system reset while still holding core reset
|
||||
set mdmapControl [expr $mdmapControl & 0xFFFFFFF7]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
|
||||
# Wait for the mass erase operation to complete
|
||||
set done 0
|
||||
for {set i 0} {$i < 10} {incr i} {
|
||||
refresh
|
||||
set mdmapControl [cmdwin::reg MDMAP_C -np]
|
||||
if {($mdmapControl & 1) == 0} {
|
||||
set done 1
|
||||
break;
|
||||
}
|
||||
wait 50
|
||||
}
|
||||
|
||||
# Release the core reset
|
||||
set mdmapControl [expr $mdmapControl & 0xFFFFFFEF]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
if {$done} {
|
||||
puts "OK: Mass erase succeeded"
|
||||
} else {
|
||||
puts "Error: Timeout"
|
||||
}
|
||||
296
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/ReferencedRSESystems.xml
vendored
Normal file
296
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/ReferencedRSESystems.xml
vendored
Normal file
@ -0,0 +1,296 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- This file stores a copy of all RSE Systems referenced by the project
|
||||
so the systems can be automatically recreated when the project is imported in a new workspace.
|
||||
This file is automatically generated and updated by the Eclipse IDE.-->
|
||||
<APSC_Memento>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.proj.wolfcrypt_test" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.proj.wolfcrypt_test"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.proj.wolfcrypt_test" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.proj.wolfcrypt_test"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_JTrace.proj.wolfcrypt_test" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_JTrace.proj.wolfcrypt_test"/>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.proj.wolfcrypt_test" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.proj.wolfcrypt_test"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<property key="propertySet.[cw.dbg.main].templateId" value="None"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1410292099859"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.proj.wolfcrypt_test" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.proj.wolfcrypt_test"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
</APSC_Memento>
|
||||
22
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Sources/include.am
vendored
Normal file
22
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Sources/include.am
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
# vim:ft=automake
|
||||
# All paths should be given relative to the root
|
||||
#
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/wolfcrypt_test/.cproject \
|
||||
mqx/wolfcrypt_test/.project \
|
||||
mqx/wolfcrypt_test/Debugger/K70FN1M0.mem \
|
||||
mqx/wolfcrypt_test/Debugger/init_kinetis.tcl \
|
||||
mqx/wolfcrypt_test/Debugger/mass_erase_kinetis.tcl \
|
||||
mqx/wolfcrypt_test/ReferencedRSESystems.xml \
|
||||
mqx/wolfcrypt_test/wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.launch \
|
||||
mqx/wolfcrypt_test/wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.launch \
|
||||
mqx/wolfcrypt_test/wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_JTrace.jlink \
|
||||
mqx/wolfcrypt_test/wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_JTrace.launch \
|
||||
mqx/wolfcrypt_test/wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.launch \
|
||||
mqx/wolfcrypt_test/wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.launch
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/wolfcrypt_test/Sources/main.c \
|
||||
mqx/wolfcrypt_test/Sources/main.h
|
||||
|
||||
94
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Sources/main.c
vendored
Normal file
94
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Sources/main.c
vendored
Normal file
@ -0,0 +1,94 @@
|
||||
/* main.c */
|
||||
|
||||
#include "main.h"
|
||||
|
||||
/* SD card open/close utility functions */
|
||||
#include "util.h"
|
||||
|
||||
#if !BSPCFG_ENABLE_IO_SUBSYSTEM
|
||||
#error This application requires BSPCFG_ENABLE_IO_SUBSYSTEM defined \
|
||||
non-zero in user_config.h. Please recompile BSP with this option.
|
||||
#endif
|
||||
|
||||
#ifndef BSP_DEFAULT_IO_CHANNEL_DEFINED
|
||||
#error This application requires BSP_DEFAULT_IO_CHANNEL to be not NULL. \
|
||||
Please set corresponding BSPCFG_ENABLE_TTYx to non-zero in \
|
||||
user_config.h and recompile BSP with this option.
|
||||
#endif
|
||||
|
||||
TASK_TEMPLATE_STRUCT MQX_template_list[] =
|
||||
{
|
||||
/* Task number, Entry point, Stack, Pri, String, Auto? */
|
||||
{MAIN_TASK, Main_task, 20000, 9, "main", MQX_AUTO_START_TASK},
|
||||
{0, 0, 0, 0, 0, 0, }
|
||||
};
|
||||
|
||||
#if defined BSP_SDCARD_ESDHC_CHANNEL
|
||||
#if ! BSPCFG_ENABLE_ESDHC
|
||||
#error This application requires BSPCFG_ENABLE_ESDHC defined \
|
||||
non-zero in user_config.h. Please recompile libraries with \
|
||||
this option.
|
||||
#endif
|
||||
|
||||
#elif defined BSP_SDCARD_SDHC_CHANNEL
|
||||
#if ! BSPCFG_ENABLE_SDHC
|
||||
#error This application requires BSPCFG_ENABLE_SDHC defined \
|
||||
non-zero in user_config.h. Please recompile libraries with \
|
||||
this option.
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined (BSP_SDCARD_SPI_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_SPI_CHANNEL
|
||||
#elif defined (BSP_SDCARD_ESDHC_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_ESDHC_CHANNEL
|
||||
#elif defined (BSP_SDCARD_SDHC_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_SDHC_CHANNEL
|
||||
#else
|
||||
#error "SDCARD low level communication device not defined!"
|
||||
#endif
|
||||
|
||||
/* func_args from test.h */
|
||||
typedef struct func_args {
|
||||
int argc;
|
||||
char** argv;
|
||||
int return_code;
|
||||
} func_args;
|
||||
|
||||
/*TASK*-----------------------------------------------------------------
|
||||
* Function Name : Main_task
|
||||
* Comments :
|
||||
* This task opens the SD card device and runs the
|
||||
* wolfCrypt test functions located in test.c.
|
||||
*END------------------------------------------------------------------*/
|
||||
|
||||
void Main_task(uint32_t initial_data)
|
||||
{
|
||||
int ret = 0;
|
||||
func_args args;
|
||||
char filesystem_name[] = "a:";
|
||||
char partman_name[] = "pm:";
|
||||
MQX_FILE_PTR com_handle, sdcard_handle, filesystem_handle, partman_handle;
|
||||
|
||||
ret = sdcard_open(&com_handle, &sdcard_handle, &partman_handle,
|
||||
&filesystem_handle, partman_name, filesystem_name);
|
||||
if (ret != 0) {
|
||||
printf("error: sdcard_open(), ret = %d\n", ret);
|
||||
_mqx_exit(1);
|
||||
}
|
||||
printf("SD card installed to %s\n", filesystem_name);
|
||||
|
||||
wolfcrypt_test(&args);
|
||||
|
||||
ret = sdcard_close(&sdcard_handle, &partman_handle,
|
||||
&filesystem_handle, partman_name, filesystem_name);
|
||||
if (ret != 0) {
|
||||
printf("error: sdcard_close(), ret = %d\n", ret);
|
||||
_mqx_exit(1);
|
||||
}
|
||||
printf("SD card uninstalled.\n");
|
||||
|
||||
_mqx_exit(0);
|
||||
|
||||
}
|
||||
|
||||
20
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Sources/main.h
vendored
Normal file
20
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfcrypt_test/Sources/main.h
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
/* main.h */
|
||||
|
||||
#ifndef __main_h_
|
||||
#define __main_h_
|
||||
|
||||
#include <mqx.h>
|
||||
#include <bsp.h>
|
||||
#include <fio.h>
|
||||
#include <mfs.h>
|
||||
#include <sdcard.h>
|
||||
#include <spi.h>
|
||||
#include <part_mgr.h>
|
||||
|
||||
#define MAIN_TASK 1
|
||||
|
||||
extern void Main_task (uint32_t);
|
||||
void wolfcrypt_test(void* args);
|
||||
|
||||
#endif /* __main_h_ */
|
||||
|
||||
@ -0,0 +1,133 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_DDRData_Debug/wolfcrypt_test.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_test"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.685476017"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_test"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,133 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.1"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_DDRData_Release/wolfcrypt_test.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_test"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.14851640"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_test"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,34 @@
|
||||
[BREAKPOINTS]
|
||||
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
|
||||
@ -0,0 +1,182 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.FORMAT" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?><contentList/>"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.GLOBAL_VARIABLES" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <globalVariableList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.MEMORY_BLOCKS" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <memoryBlockExpressionList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Debug/wolfcrypt_test.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_test"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.1358518006"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_test"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
<stringAttribute key="process_factory_id" value="com.freescale.cdt.debug.cw.core.ProcessFactoryID"/>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,182 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.FORMAT" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?><contentList/>"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.GLOBAL_VARIABLES" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <globalVariableList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.MEMORY_BLOCKS" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <memoryBlockExpressionList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Debug/wolfcrypt_test.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_test"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.1358518006"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_test"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
<stringAttribute key="process_factory_id" value="com.freescale.cdt.debug.cw.core.ProcessFactoryID"/>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.3"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Release/wolfcrypt_test.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfcrypt_test"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.99688619"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfcrypt_test"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
</launchConfiguration>
|
||||
11
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl/include.am
vendored
Normal file
11
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl/include.am
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
# vim:ft=automake
|
||||
# All paths should be given relative to the root
|
||||
#
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/README
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/wolfssl/.cproject \
|
||||
mqx/wolfssl/.project
|
||||
|
||||
43
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Debugger/K70FN1M0.mem
vendored
Executable file
43
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Debugger/K70FN1M0.mem
vendored
Executable file
@ -0,0 +1,43 @@
|
||||
// Memory Configuration File
|
||||
//
|
||||
// Description:
|
||||
// A memory configuration file contains commands that define the legally accessible
|
||||
// areas of memory for your specific board. Useful for example when the debugger
|
||||
// tries to display the content of a "char *" variable, that has not yet been initialized.
|
||||
// In this case the debugger may try to read from a bogus address, which could cause a
|
||||
// bus error.
|
||||
//
|
||||
// Board:
|
||||
// Kinetis K70FN1M0
|
||||
//
|
||||
// Reference:
|
||||
// -
|
||||
|
||||
|
||||
// All reserved ranges read back 0xBABA...
|
||||
reservedchar 0xBA
|
||||
|
||||
usederivative "MK70F15"
|
||||
|
||||
// Memory Map:
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
range 0x00000000 0x000FFFFF 4 ReadWrite // 1024KB Code Flash
|
||||
reserved 0x00100000 0x13FFFFFF
|
||||
range 0x14000000 0x14003FFF 4 ReadWrite // 16KB Programming acceleration RAM
|
||||
reserved 0x14004000 0x1FFEFFFF
|
||||
range 0x1FFF0000 0x1FFFFFFF 4 ReadWrite // 64KB On chip SRAM (TCML)
|
||||
range 0x20000000 0x2000FFFF 4 ReadWrite // 64KB On chip SRAM (TCMU)
|
||||
reserved 0x20010000 0x21FFFFFF
|
||||
range 0x22000000 0x221FFFFF 4 ReadWrite // Aliased to TCMU SRAM bitband
|
||||
reserved 0x22200000 0x3FFFFFFF
|
||||
reserved 0x60000000 0x6FFFFFFF // Flexbus for external memory
|
||||
range 0x70000000 0x7FFFFFFF 4 ReadWrite // DRAM Controller - Write-back
|
||||
range 0x80000000 0x8FFFFFFF 4 ReadWrite // DRAM Controller - Write-through
|
||||
reserved 0x90000000 0xDFFFFFFF // Flexbus for external memory
|
||||
reserved 0xE0100000 0xFFFFFFFF
|
||||
|
||||
// Comment the following line for NFC-projects
|
||||
reserved 0x400A8000 0x400ABEFF
|
||||
// Uncomment the following line for NFC-projects
|
||||
//range 0x400A8000 0x400ABEFF 4 ReadWrite
|
||||
71
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Debugger/init_kinetis.tcl
vendored
Executable file
71
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Debugger/init_kinetis.tcl
vendored
Executable file
@ -0,0 +1,71 @@
|
||||
# this method initializes debug modules which are not affected by software reset
|
||||
# register names should be referenced including the register group name to improve performance
|
||||
|
||||
proc init_debug_modules {} {
|
||||
# initialize LR to avoid invalid stack after reset
|
||||
reg "User\\/System Mode Registers/LR" = 0xFFFFFFFF
|
||||
|
||||
# clear DWT function registers
|
||||
reg "Core Debug Registers/DEMCR" = 0x1000001
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION0" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION1" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION2" = 0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FUNCTION3" = 0x0
|
||||
# clear FPB comparators
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP0" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP1" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP2" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP3" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP4" = 0x0
|
||||
reg "Flash Patch and Breakpoint Unit Registers/FP_COMP5" = 0x0
|
||||
}
|
||||
|
||||
proc init_trace_modules {} {
|
||||
# clear DWT registers
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CTRL" =0x40000000
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CYCCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_CPICNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_EXCCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_SLEEPCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_LSUCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_FOLDCNT" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP0" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP1" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP2" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_COMP3" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK0" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK1" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK2" =0x0
|
||||
reg "Data Watchpoint and Trace Unit Registers/DWT_MASK3" =0x0
|
||||
# clear ITM registers
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_LAR" =0xc5acce55
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TER" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TPR" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_TCR" =0x0
|
||||
reg "Instrumentation Trace Macrocell Registers/ITM_LAR" =0x1
|
||||
# reset Funnel registers
|
||||
reg "Embedded Trace Funnel Registers/ETF_FCR" =0x300
|
||||
# clear MCM registers
|
||||
reg "Core Platform Miscellaneous Control Module (MCM) Registers/MCM_ETBCC" =0x0
|
||||
reg "Core Platform Miscellaneous Control Module (MCM) Registers/MCM_ETBRL" =0x0
|
||||
# set SCB_VTOR register for RAM
|
||||
reg "System Control Registers/SCB_VTOR" =0x20000000
|
||||
}
|
||||
|
||||
proc envsetup {} {
|
||||
# Environment Setup
|
||||
radix x
|
||||
config hexprefix 0x
|
||||
config MemIdentifier p
|
||||
config MemWidth 32
|
||||
config MemAccess 32
|
||||
config MemSwap off
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Main
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
envsetup
|
||||
init_debug_modules
|
||||
init_trace_modules
|
||||
31
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Debugger/mass_erase_kinetis.tcl
vendored
Executable file
31
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Debugger/mass_erase_kinetis.tcl
vendored
Executable file
@ -0,0 +1,31 @@
|
||||
# This script performs the mass erase operation for Kinetis targets
|
||||
|
||||
# Command mass erase with system reset and core reset
|
||||
set mdmapControl [cmdwin::reg MDMAP_C -np]
|
||||
set mdmapControl [expr $mdmapControl | 0x19]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
|
||||
# Release system reset while still holding core reset
|
||||
set mdmapControl [expr $mdmapControl & 0xFFFFFFF7]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
|
||||
# Wait for the mass erase operation to complete
|
||||
set done 0
|
||||
for {set i 0} {$i < 10} {incr i} {
|
||||
refresh
|
||||
set mdmapControl [cmdwin::reg MDMAP_C -np]
|
||||
if {($mdmapControl & 1) == 0} {
|
||||
set done 1
|
||||
break;
|
||||
}
|
||||
wait 50
|
||||
}
|
||||
|
||||
# Release the core reset
|
||||
set mdmapControl [expr $mdmapControl & 0xFFFFFFEF]
|
||||
cmdwin::reg MDMAP_C = $mdmapControl
|
||||
if {$done} {
|
||||
puts "OK: Mass erase succeeded"
|
||||
} else {
|
||||
puts "Error: Timeout"
|
||||
}
|
||||
296
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/ReferencedRSESystems.xml
vendored
Normal file
296
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/ReferencedRSESystems.xml
vendored
Normal file
@ -0,0 +1,296 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- This file stores a copy of all RSE Systems referenced by the project
|
||||
so the systems can be automatically recreated when the project is imported in a new workspace.
|
||||
This file is automatically generated and updated by the Eclipse IDE.-->
|
||||
<APSC_Memento>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.proj.wolfssl_client" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.proj.wolfssl_client"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.proj.wolfssl_client" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.proj.wolfssl_client"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.1"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_JTrace.proj.wolfssl_client" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_JTrace.proj.wolfssl_client"/>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.proj.wolfssl_client" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.proj.wolfssl_client"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<property key="propertySet.[com.freescale.mcu.debug.connections.jlink.arm].com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<property key="propertySet.[cw.dbg.main].templateId" value="None"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1410292099859"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.2"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="hidden.applicator.com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.proj.wolfssl_client" value="com.freescale.debugger.applicator.launchconfiguration.lc.wolfssl_client_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.proj.wolfssl_client"/>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<property key="propertySet.[com.pemicro.mcu.debug.connections.pne.arm].com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<property key="propertySet.[cw.dbg.conn].rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard.gdi].logData" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryTimeout" value="20"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].RetryWithTimeoutOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].TerminateConnectionOn" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.targetConnLost].retryPromptUserActionOn" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct].Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
<host>
|
||||
<properties>
|
||||
<property key="host.address" value=""/>
|
||||
<property key="host.defaultEncoding" value=""/>
|
||||
<property key="host.defaultUser" value="Christopher Conlon"/>
|
||||
<property key="host.description" value=""/>
|
||||
<property key="host.name" value="wolfcrypt_test_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink Target"/>
|
||||
<property key="host.promptable" value="false"/>
|
||||
<property key="host.type" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableConnectorServicesPropertyPage" value="false"/>
|
||||
<property key="propertySet.[OptionalPropertySet].enableGenericHostPropertyPage" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableHSSTIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableNetworkIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableSerialIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].enableStopTransferIOModelConfig" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].ethernetController" value="UEC1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].executeReset" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkDebuggerAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkGateway" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkMACAddress" value="**-**-**-**-**-**"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkNetMask" value="255.255.255.255"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkTargetAddress" value="127.0.0.1"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].networkUDPPort" value="1234"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].noIOModelConfig" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].runOutOfReset" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].targetIsPalladium" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useInitFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useMemoryConfigFile" value="true"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkGateway" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkMACAddress" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.ct.bareboard].useNetworkUDPPort" value="false"/>
|
||||
<property key="propertySet.[cw.dbg.main].systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.HostID" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.system.140905160549-0600.3"/>
|
||||
<property key="propertySet.[cw.ide.settingscache].hidden.TimeStamp" value="1409954755358"/>
|
||||
</properties>
|
||||
</host>
|
||||
</APSC_Memento>
|
||||
22
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Sources/include.am
vendored
Normal file
22
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Sources/include.am
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
# vim:ft=automake
|
||||
# All paths should be given relative to the root
|
||||
#
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/wolfssl_client/.cproject \
|
||||
mqx/wolfssl_client/.project \
|
||||
mqx/wolfssl_client/Debugger/K70FN1M0.mem \
|
||||
mqx/wolfssl_client/Debugger/init_kinetis.tcl \
|
||||
mqx/wolfssl_client/Debugger/mass_erase_kinetis.tcl \
|
||||
mqx/wolfssl_client/ReferencedRSESystems.xml \
|
||||
mqx/wolfssl_client/wolfssl_client_twrk70f120m_Int_Flash_DDRData_Debug_PnE_U-MultiLink.launch \
|
||||
mqx/wolfssl_client/wolfssl_client_twrk70f120m_Int_Flash_DDRData_Release_PnE_U-MultiLink.launch \
|
||||
mqx/wolfssl_client/wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_JTrace.jlink \
|
||||
mqx/wolfssl_client/wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_JTrace.launch \
|
||||
mqx/wolfssl_client/wolfssl_client_twrk70f120m_Int_Flash_SramData_Debug_PnE_U-MultiLink.launch \
|
||||
mqx/wolfssl_client/wolfssl_client_twrk70f120m_Int_Flash_SramData_Release_PnE_U-MultiLink.launch
|
||||
|
||||
EXTRA_DIST += \
|
||||
mqx/wolfssl_client/Sources/main.c \
|
||||
mqx/wolfssl_client/Sources/main.h
|
||||
|
||||
293
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Sources/main.c
vendored
Normal file
293
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Sources/main.c
vendored
Normal file
@ -0,0 +1,293 @@
|
||||
/*
|
||||
* main.c
|
||||
*/
|
||||
|
||||
#include "main.h"
|
||||
#include "util.h"
|
||||
|
||||
#if !BSPCFG_ENABLE_IO_SUBSYSTEM
|
||||
#error This application requires BSPCFG_ENABLE_IO_SUBSYSTEM defined \
|
||||
non-zero in user_config.h. Please recompile BSP with this option.
|
||||
#endif
|
||||
|
||||
#ifndef BSP_DEFAULT_IO_CHANNEL_DEFINED
|
||||
#error This application requires BSP_DEFAULT_IO_CHANNEL to be not NULL. \
|
||||
Please set corresponding BSPCFG_ENABLE_TTYx to non-zero in \
|
||||
user_config.h and recompile BSP with this option.
|
||||
#endif
|
||||
|
||||
#if defined BSP_SDCARD_ESDHC_CHANNEL
|
||||
#if ! BSPCFG_ENABLE_ESDHC
|
||||
#error This application requires BSPCFG_ENABLE_ESDHC defined non-zero in \
|
||||
user_config.h. Please recompile libraries with this option.
|
||||
#endif
|
||||
|
||||
#elif defined BSP_SDCARD_SDHC_CHANNEL
|
||||
|
||||
#if ! BSPCFG_ENABLE_SDHC
|
||||
#error This application requires BSPCFG_ENABLE_SDHC defined non-zero in \
|
||||
user_config.h. Please recompile libraries with this option.
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#if defined (BSP_SDCARD_SPI_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_SPI_CHANNEL
|
||||
#elif defined (BSP_SDCARD_ESDHC_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_ESDHC_CHANNEL
|
||||
#elif defined (BSP_SDCARD_SDHC_CHANNEL)
|
||||
#define SDCARD_COM_CHANNEL BSP_SDCARD_SDHC_CHANNEL
|
||||
#else
|
||||
#error "SDCARD low level communication device not defined!"
|
||||
#endif
|
||||
|
||||
TASK_TEMPLATE_STRUCT MQX_template_list[] =
|
||||
{
|
||||
/* Task number, Entry point, Stack, Pri, String, Auto? */
|
||||
{MAIN_TASK, Main_task, 20000, 9, "main", MQX_AUTO_START_TASK},
|
||||
{0, 0, 0, 0, 0, 0, }
|
||||
};
|
||||
|
||||
/*TASK*-----------------------------------------------------
|
||||
*
|
||||
* Task Name : Main_task
|
||||
* Comments :
|
||||
* This task sets up the SD card and Ethernet devices,
|
||||
* then starts the example wolfSSL client. The example
|
||||
* wolfSSL client connects to a server over TLS and sends
|
||||
* a simple HTTP GET message, then prints out the reply
|
||||
* from the server.
|
||||
*
|
||||
* To change the IP address and port of the server,
|
||||
* change the wolfsslIP and wolfsslPort variables in
|
||||
* client_test(). Note that wolfsslIP needs to be given
|
||||
* in hexadecimal.
|
||||
*
|
||||
*END*-----------------------------------------------------*/
|
||||
|
||||
void Main_task(uint32_t initial_data)
|
||||
{
|
||||
int ret = 0;
|
||||
char filesystem_name[] = "a:";
|
||||
char partman_name[] = "pm:";
|
||||
MQX_FILE_PTR com_handle, sdcard_handle, filesystem_handle, partman_handle;
|
||||
|
||||
printf("Starting client example... \n");
|
||||
|
||||
ret = sdcard_open(&com_handle, &sdcard_handle, &partman_handle,
|
||||
&filesystem_handle, partman_name, filesystem_name);
|
||||
|
||||
if (ret != 0) {
|
||||
printf("error: sdcard_open(), ret = %d\n", ret);
|
||||
_mqx_exit(1);
|
||||
}
|
||||
printf("SD card installed to %s\n", filesystem_name);
|
||||
|
||||
setup_ethernet();
|
||||
setup_clock();
|
||||
client_test();
|
||||
|
||||
ret = sdcard_close(&sdcard_handle, &partman_handle, &filesystem_handle,
|
||||
partman_name, filesystem_name);
|
||||
|
||||
if (ret != 0) {
|
||||
printf("error: sdcard_close(), ret = %d\n", ret);
|
||||
_mqx_exit(1);
|
||||
}
|
||||
printf("SD card uninstalled.\n");
|
||||
|
||||
_mqx_exit(0);
|
||||
}
|
||||
|
||||
void setup_ethernet(void)
|
||||
{
|
||||
int error;
|
||||
_enet_handle ehandle; /* for Ethernet driver */
|
||||
_rtcs_if_handle ihandle;
|
||||
_enet_address address;
|
||||
|
||||
error = RTCS_create();
|
||||
if (error) {
|
||||
err_sys("failed to create RTCS");
|
||||
}
|
||||
|
||||
ENET_get_mac_address(BSP_DEFAULT_ENET_DEVICE, ENET_IPADDR, address);
|
||||
|
||||
/* Set up the Ethernet driver */
|
||||
error = ENET_initialize(BSP_DEFAULT_ENET_DEVICE, address, 0, &ehandle);
|
||||
if (error)
|
||||
err_sys("failed to initialize Ethernet driver");
|
||||
|
||||
error = RTCS_if_add(ehandle, RTCS_IF_ENET, &ihandle);
|
||||
if (error)
|
||||
err_sys("failed to add interface for Ethernet");
|
||||
|
||||
error = RTCS_if_bind(ihandle, ENET_IPADDR, ENET_IPMASK);
|
||||
if (error)
|
||||
err_sys("failed to bind interface for Ethernet");
|
||||
|
||||
#ifdef GATE_IPADDR
|
||||
RTCS_gate_add(GATE_IPADDR, INADDR_ANY, INADDR_ANY);
|
||||
#endif
|
||||
|
||||
printf("Ethernet device %d bound to %X\n", BSP_DEFAULT_ENET_DEVICE,
|
||||
ENET_IPADDR);
|
||||
}
|
||||
|
||||
void setup_clock(void)
|
||||
{
|
||||
uint32_t ret = 0, i = 0;
|
||||
uint32_t sntp_connected = 0;
|
||||
uint32_t sntp_max_tries = 3;
|
||||
TIME_STRUCT time_s;
|
||||
DATE_STRUCT date_s;
|
||||
|
||||
/* NTP server: nist1-lnk.binary.net */
|
||||
_ip_address ipaddr = IPADDR(216,229,0,179);
|
||||
|
||||
for (i = 0; i < sntp_max_tries; i++) {
|
||||
|
||||
printf("Getting time from NTP server [ attempt %u of %u ]...\n",
|
||||
i+1, sntp_max_tries);
|
||||
|
||||
/* update time from NTP server */
|
||||
ret = SNTP_oneshot(ipaddr, 5000);
|
||||
|
||||
if (ret == RTCS_OK) {
|
||||
sntp_connected = 1;
|
||||
printf("SNTP successfully updated device time\n");
|
||||
break;
|
||||
} else if (ret == RTCSERR_TIMEOUT) {
|
||||
printf("SNTP attempt timed out.\n");
|
||||
}
|
||||
|
||||
_time_delay(1000);
|
||||
}
|
||||
|
||||
if (sntp_connected == 0) {
|
||||
err_sys("SNTP failed to update device time");
|
||||
}
|
||||
|
||||
/* print device time, for debug purposes */
|
||||
_time_get(&time_s);
|
||||
_time_to_date(&time_s, &date_s);
|
||||
printf("Current time: %02d/%02d/%02d %02d:%02d:%02d\n",
|
||||
date_s.YEAR, date_s.MONTH, date_s.DAY, date_s.HOUR, date_s.MINUTE,
|
||||
date_s.SECOND);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
int myVerify(int preverify, WOLFSSL_X509_STORE_CTX* store)
|
||||
{
|
||||
(void)preverify;
|
||||
char buffer[80];
|
||||
|
||||
printf("In verification callback, error = %d, %s\n",
|
||||
store->error, wolfSSL_ERR_error_string(store->error, buffer));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void client_test(void)
|
||||
{
|
||||
char msg[64];
|
||||
char reply[1024];
|
||||
int sockfd, input;
|
||||
int ret = 0, msgSz = 0;
|
||||
struct sockaddr_in servaddr;
|
||||
WOLFSSL_CTX* ctx;
|
||||
WOLFSSL* ssl;
|
||||
|
||||
long wolfsslIP = IPADDR(192,168,1,125);
|
||||
long wolfsslPort = 11111;
|
||||
|
||||
/* for debug, compile wolfSSL with DEBUG_WOLFSSL defined */
|
||||
wolfSSL_Debugging_ON();
|
||||
|
||||
wolfSSL_Init();
|
||||
|
||||
ctx = wolfSSL_CTX_new(wolfTLSv1_2_client_method());
|
||||
if (ctx == 0)
|
||||
err_sys("setting up ctx");
|
||||
|
||||
wolfSSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, myVerify);
|
||||
|
||||
ret = wolfSSL_CTX_use_certificate_file(ctx, clientCert, SSL_FILETYPE_PEM);
|
||||
if (ret != SSL_SUCCESS)
|
||||
err_sys("can't load client cert file, check file");
|
||||
|
||||
ret = wolfSSL_CTX_use_PrivateKey_file(ctx, clientKey, SSL_FILETYPE_PEM);
|
||||
if (ret != SSL_SUCCESS)
|
||||
err_sys("can't load client key file, check file");
|
||||
|
||||
ret = wolfSSL_CTX_load_verify_locations(ctx, caCert, 0);
|
||||
if (ret != SSL_SUCCESS)
|
||||
err_sys("can't load CA cert file, check file");
|
||||
|
||||
/* create socket descriptor */
|
||||
sockfd = socket(AF_INET, SOCK_STREAM, 0);
|
||||
if (sockfd == RTCS_SOCKET_ERROR) {
|
||||
err_sys("socket creation failed");
|
||||
} else {
|
||||
printf("socket created successfully\n");
|
||||
}
|
||||
|
||||
/*
|
||||
* Unlike most TCP/IP stacks, RTCS requires that sin_port and
|
||||
* sin_addr needs to be in Host Byte Order, not Network Byte Order.
|
||||
* This means we shouldn't use htons() when setting these values.
|
||||
*/
|
||||
memset((char*)&servaddr, 0, sizeof(servaddr));
|
||||
servaddr.sin_family = AF_INET;
|
||||
servaddr.sin_port = wolfsslPort;
|
||||
servaddr.sin_addr.s_addr = wolfsslIP;
|
||||
|
||||
ret = connect(sockfd, &servaddr, sizeof(servaddr));
|
||||
if (ret != RTCS_OK) {
|
||||
err_sys("connect() failed");
|
||||
} else {
|
||||
printf("Connected to %lx, port %d.\n", servaddr.sin_addr.s_addr,
|
||||
servaddr.sin_port);
|
||||
}
|
||||
|
||||
if ( (ssl = wolfSSL_new(ctx)) == NULL)
|
||||
err_sys("wolfSSL_new failed");
|
||||
|
||||
ret = wolfSSL_set_fd(ssl, sockfd);
|
||||
if (ret != SSL_SUCCESS)
|
||||
err_sys("wolfSSL_set_fd failed");
|
||||
|
||||
ret = wolfSSL_connect(ssl);
|
||||
if (ret != SSL_SUCCESS)
|
||||
err_sys("wolfSSL_connect failed");
|
||||
|
||||
printf("wolfSSL_connect() ok, sending GET...\n");
|
||||
msgSz = 28;
|
||||
strncpy(msg, "GET /index.html HTTP/1.0\r\n\r\n", msgSz);
|
||||
if (wolfSSL_write(ssl, msg, msgSz) != msgSz)
|
||||
err_sys("wolfSSL_write() failed");
|
||||
|
||||
input = wolfSSL_read(ssl, reply, sizeof(reply)-1);
|
||||
if (input > 0) {
|
||||
reply[input] = 0;
|
||||
printf("Server response: %s\n", reply);
|
||||
|
||||
while (1) {
|
||||
input = wolfSSL_read(ssl, reply, sizeof(reply)-1);
|
||||
if (input > 0) {
|
||||
reply[input] = 0;
|
||||
printf("%s\n", reply);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
wolfSSL_shutdown(ssl);
|
||||
wolfSSL_free(ssl);
|
||||
wolfSSL_CTX_free(ctx);
|
||||
wolfSSL_Cleanup();
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
60
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Sources/main.h
vendored
Normal file
60
kernel/FreeRTOS-Plus/ThirdParty/wolfSSL/mqx/wolfssl_client/Sources/main.h
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
/* main.h */
|
||||
|
||||
#ifndef __main_h_
|
||||
#define __main_h_
|
||||
|
||||
#include <mqx.h>
|
||||
#include <bsp.h>
|
||||
#include <mfs.h>
|
||||
#include <fio.h>
|
||||
#include <rtcs.h>
|
||||
#include <ipcfg.h>
|
||||
#include <sdcard.h>
|
||||
#include <spi.h>
|
||||
#include <part_mgr.h>
|
||||
|
||||
#include <wolfssl/ssl.h>
|
||||
|
||||
#define MAIN_TASK 1
|
||||
|
||||
extern void Main_task(uint32_t);
|
||||
extern void setup_ethernet(void);
|
||||
extern void setup_clock(void);
|
||||
extern void client_test(void);
|
||||
|
||||
/* cert file locations */
|
||||
static const char* caCert = "a:\\certs\\ca-cert.pem";
|
||||
static const char* clientCert = "a:\\certs\\client-cert.pem";
|
||||
static const char* clientKey = "a:\\certs\\client-key.pem";
|
||||
|
||||
static inline void err_sys(const char* msg)
|
||||
{
|
||||
printf("wolfssl error: %s\n", msg);
|
||||
if (msg)
|
||||
_mqx_exit(1);
|
||||
}
|
||||
|
||||
/* PPP device must be set manually and
|
||||
* must be different from the default IO channel (BSP_DEFAULT_IO_CHANNEL)
|
||||
*/
|
||||
#define PPP_DEVICE "ittyb:"
|
||||
|
||||
/*
|
||||
* Define PPP_DEVICE_DUN only when using PPP to communicate
|
||||
* to Win9x Dial-Up Networking over a null-modem
|
||||
* This is ignored if PPP_DEVICE is not #define'd
|
||||
*/
|
||||
#define PPP_DEVICE_DUN 1
|
||||
|
||||
#ifndef ENET_IPADDR
|
||||
#define ENET_IPADDR IPADDR(192,168,1,155)
|
||||
#endif
|
||||
|
||||
#ifndef ENET_IPMASK
|
||||
#define ENET_IPMASK IPADDR(255,255,255,0)
|
||||
#endif
|
||||
|
||||
#define GATE_IPADDR IPADDR(192,168,1,1)
|
||||
|
||||
#endif /* __main_h_ */
|
||||
|
||||
@ -0,0 +1,133 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_DDRData_Debug/wolfssl_client.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfssl_client"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.685476017"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfssl_client"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,133 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.1"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_DDRData_Release/wolfssl_client.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfssl_client"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.14851640"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfssl_client"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,34 @@
|
||||
[BREAKPOINTS]
|
||||
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
|
||||
@ -0,0 +1,182 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.FORMAT" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?><contentList/>"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.GLOBAL_VARIABLES" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <globalVariableList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.MEMORY_BLOCKS" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <memoryBlockExpressionList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Debug/wolfssl_client.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfssl_client"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.1358518006"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfssl_client"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
<stringAttribute key="process_factory_id" value="com.freescale.cdt.debug.cw.core.ProcessFactoryID"/>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,182 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.freescale.mcu.debug.connections.jlink.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.freescale.mcu.debug.connections.jlink.arm."/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.SimulatorConnectionAttributeBase" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.2"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.CommandLineArgs" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.ConfigFile" value=""/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Debug port interface" value="JTAG"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Delay after reset (ms)" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD fixed speed (Khz)" value="4000"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.JTAG/SWD speed" value="Fixed"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.Library" value="arm_jlink_gdi"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.USB device" value="0"/>
|
||||
<stringAttribute key="com.freescale.mcu.debug.connections.jlink.arm.names_of_user_added_attributes" value=""/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.FORMAT" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?><contentList/>"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.GLOBAL_VARIABLES" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <globalVariableList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.MEMORY_BLOCKS" value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <memoryBlockExpressionList/> "/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Debug/wolfssl_client.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfssl_client"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.1358518006"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfssl_client"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
<stringAttribute key="process_factory_id" value="com.freescale.cdt.debug.cw.core.ProcessFactoryID"/>
|
||||
</launchConfiguration>
|
||||
@ -0,0 +1,168 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<launchConfiguration type="com.freescale.cdt.launch.cw.download">
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor" value="K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.busFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.checkUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.hardFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.intErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.memManageErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.noCoprocessorErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Exceptions.stateUsageFaultErr" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.disable_interrupts_during_stepping" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_enabled" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Interrupt.interrupt_mask" value="0"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.altLoadAddr" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Debugger PIC Settings Panel.enableAltLoadAddr" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.IVuninitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDconstant" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDexecutable" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDinitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SDuninitialized" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVconstant" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVexecutable" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVinitialized" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Download.SVuninitialized" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.coreIndex" value="0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.homogeneousMulticore" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.initPath" value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.memConfigPath" value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.simulator" value=""/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.smp" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.systemType" value="com.freescale.cw.system.kinetis.K70F.K70FN1M0"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useDefaultConfigFile" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useInitFile" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.Embedded Initialization.useMemoryConfigFile" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.CoreNameList">
|
||||
<listEntry value="K70FN1M0#0"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Debug"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.DebuggerTab.StopAtUserSpecified" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.ExecuteTasks" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Embedded Download.StandardDownload" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskInitialLaunches"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskNames"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskSuccessiveRuns"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.Embedded Download.TaskTypes"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.ExecutablePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePC" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtProgramEntryPoint" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.InitializePCAtSymbol" value="main"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.InitializePCAtUserSpecified" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.LaunchMode" value="DOWNLOAD"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtProgramEntryPoint" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtStartUp" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.PN_StopAtUserSpecified" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.RefreshPolicy.RefreshPeriod" value="2.0"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemoteDownload"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.RemotePath"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.ResumeProgram" value="true"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.SMPCores"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.SYNC_WITH_ENCL_PROJ" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.CacheSymbolicsBetweenRuns" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.Symbolics.UseExecutableCopy" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.UDPPort" value="1234"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.UseApplication" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryConnectionOn" value="false"/>
|
||||
<intAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryTimeout" value="20"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.RetryWithTimeoutOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.TerminateConnectionOn" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.ConnectionCommonData.TargetConnectionLost.promptUserActionOn" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Protocol Plugin Name" value="ARM GDI"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Connection Type" value="com.pemicro.mcu.debug.connections.pne.arm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.DebuggerCommonData.Processor Attr Name" value="com.freescale.cdt.debug.cw.CW_SHADOWED_PREF.ARM Debugger.processor"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.PhysicalConnectionAttributeBase" value="com.pemicro.mcu.debug.connections.pne.arm."/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.core.settings.GdiConnection.Common.logData" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.rseSystemId" value="com.freescale.cdt.debug.cw.core.ui.rse.systemtype.bareboard.hardware.140905160549-0600.3"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.core.settings.wizardSystemNameHint" value="PnE U-MultiLink"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.debuggerAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.disableIO" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.ethCtrl" value="UEC1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeInitScripts" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerCoresReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executePerprocessorReset" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeReset" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.executeResetSequence" value="true"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.gateway" value="127.0.0.1"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.initPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/init_kinetis.tcl"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.macAddress" value="**-**-**-**-**-**"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.memConfigPathList">
|
||||
<listEntry value="${ProjDirPath}/Debugger/K70FN1M0.mem"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.netMask" value="255.255.255.255"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.osContributorID" value="com.freescale.os.mqx.cortexm"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.rtospluginname" value="MQX RTOS CORTEXM"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.osawareness.targetos" value="MQX OS for Cortex"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perCoreResetList"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.perProcessorResetList"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.processor" value="Generic"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.runOutOfResetList">
|
||||
<listEntry value="false"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.skipSystemInitialization" value="false"/>
|
||||
<stringAttribute key="com.freescale.cdt.debug.cw.targetAddress" value="127.0.0.1"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useGateway" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useHSSTIO" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useInitPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useMacAddress" value="false"/>
|
||||
<listAttribute key="com.freescale.cdt.debug.cw.useMemConfigPathList">
|
||||
<listEntry value="true"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useNetworkTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useSerialTransferIO" value="false"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useStopTransferIO" value="true"/>
|
||||
<booleanAttribute key="com.freescale.cdt.debug.cw.useUDPPort" value="false"/>
|
||||
<listAttribute key="com.freescale.panel.list">
|
||||
<listEntry value="Debugger Common Settings"/>
|
||||
<listEntry value="ARM Exceptions"/>
|
||||
<listEntry value="ARM Interrupt"/>
|
||||
<listEntry value="Embedded Download"/>
|
||||
<listEntry value="Debugger PIC Settings Panel"/>
|
||||
<listEntry value="Other Executables"/>
|
||||
<listEntry value="Symbolics"/>
|
||||
<listEntry value="osawareness"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="com.freescale.sa.mcu.launch.ENABLE_ANALYSIS" value="false"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.CommandLineArgs" value="arm_icd"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.Library" value="arm_pne_gdi"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.PEDEBUG_CURRENTDEVICE" value="K70FN1M0"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_PORT" value="21"/>
|
||||
<stringAttribute key="com.pemicro.mcu.debug.connections.pne.arm.STARTUP_interface_selection" value="1"/>
|
||||
<booleanAttribute key="forceShellDownload" value="false"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_ID" value="com.freescale.cdt.debug.cw.arm.ArmDebugger"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_REGISTER_GROUPS" value=""/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="run"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_REGISTER_BOOKKEEPING" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_RESTORE_WATCHPOINTS" value="true"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.ENABLE_VARIABLE_BOOKKEEPING" value="false"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="twrk70f120m_Int_Flash_SramData_Release/wolfssl_client.elf"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="wolfssl_client"/>
|
||||
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="org.eclipse.cdt.cross.arm.gnu.sourcery.windows.elf.debug.99688619"/>
|
||||
<intAttribute key="org.eclipse.cdt.launch.SET_REGULAR_BREAKPOINT_TYPE_AS" value="0"/>
|
||||
<booleanAttribute key="org.eclipse.cdt.launch.USE_SET_REGULAR_BREAKPOINT_TYPE_AS" value="false"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/wolfssl_client"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SERVER_SOCKET" value="false"/>
|
||||
<booleanAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET" value="false"/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_HOST" value=""/>
|
||||
<stringAttribute key="org.eclipse.debug.ui.ATTR_REDIRECT_TO_SOCKET_PORT" value=""/>
|
||||
</launchConfiguration>
|
||||
Reference in New Issue
Block a user