From 495cc1df494505378977995eeb76b05f20f0b235 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Sun, 13 Jun 2010 17:49:42 +0200 Subject: import firmware from LEGO v1.29 --- AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.d79 | Bin 0 -> 46113 bytes AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.mac | 143 + AT91SAM7S256/SAM7S256/Tools/LMS_V02.dep | 3943 ++++++++++++++++++++ AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewd | 1354 +++++++ AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewp | 2531 +++++++++++++ AT91SAM7S256/SAM7S256/Tools/LMS_V02.eww | 10 + .../SAM7S256/Tools/at91SAM7S256_64KRAM.xcl | 136 + AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dbgdt | 96 + AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dni | 33 + AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.wsdt | 49 + 10 files changed, 8295 insertions(+) create mode 100644 AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.d79 create mode 100644 AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.mac create mode 100644 AT91SAM7S256/SAM7S256/Tools/LMS_V02.dep create mode 100644 AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewd create mode 100644 AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewp create mode 100644 AT91SAM7S256/SAM7S256/Tools/LMS_V02.eww create mode 100644 AT91SAM7S256/SAM7S256/Tools/at91SAM7S256_64KRAM.xcl create mode 100644 AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dbgdt create mode 100644 AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dni create mode 100644 AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.wsdt (limited to 'AT91SAM7S256/SAM7S256/Tools') diff --git a/AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.d79 b/AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.d79 new file mode 100644 index 0000000..10dd62a Binary files /dev/null and b/AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.d79 differ diff --git a/AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.mac b/AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.mac new file mode 100644 index 0000000..6e30936 --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/FlashAT91SAM7Sxx.mac @@ -0,0 +1,143 @@ +// --------------------------------------------------------- +// ATMEL Microcontroller Software Support - ROUSSET - +// --------------------------------------------------------- +// The software is delivered "AS IS" without warranty or +// condition of any kind, either express, implied or +// statutory. This includes without limitation any warranty +// or condition with respect to merchantability or fitness +// for any particular purpose, or against the infringements of +// intellectual property rights of others. +// --------------------------------------------------------- +// File: SAM7_RAM.mac +// +// User setup file for CSPY debugger to simulate interrupt +// driven Fibonacchi data input. +// 1.1 18/Aug/04 JPP : Creation +// 1.2 27/Aug/04 JPP : PLL setting +// 1.3 04/Apr/05 JPP : Change variable name +// +// $Revision: 1.2 $ +// +// --------------------------------------------------------- + +__var __mac_i; +__var __mac_pt; + +execUserFlashInit() +{ + __message " ---------------------------------------- FLASH Download V1.1"; + PllSetting(); + execUserPreload(); + execUserSetup(); +} +execUserPreload() +{ +//* + __message "-------------------------------Set CPSR ----------------------------------"; + __writeMemory32(0xffffffff,0xFFFFFC14,"Memory"); + __writeMemory32(0xD3,0x98,"Register"); + __mac_i=__readMemory32(0x98,"Register"); __message "CPSR ",__mac_i:%X; + +//* Init AIC + +// Mask All interrupt pAic->AIC_IDCR = 0xFFFFFFFF; + __writeMemory32(0xffffffff,0xFFFFF124,"Memory"); + __writeMemory32(0xffffffff,0xFFFFF128,"Memory"); + +// #define AT91C_TC0_SR ((AT91_REG *) 0xFFFA0020) // (TC0) Status Register +// #define AT91C_TC1_SR ((AT91_REG *) 0xFFFA0060) // (TC1) Status Register +// #define AT91C_TC2_SR ((AT91_REG *) 0xFFFA00A0) // (TC2) Status Register + __readMemory32(0xFFFA0020,"Memory"); + __readMemory32(0xFFFA0060,"Memory"); + __readMemory32(0xFFFA00A0,"Memory"); +// disable peripheral clock Peripheral Clock Disable Register + __writeMemory32(0xffffffff,0xFFFFFC14,"Memory"); + + for (__mac_i=0;__mac_i < 8; __mac_i++) + { + // AT91C_BASE_AIC->AIC_EOICR + __mac_pt = __readMemory32(0xFFFFF130,"Memory"); + + } + + PllSetting(); +//* Set the RAM memory at 0x0020 0000 for code AT 0 flash area + CheckNoRemap(); +//* Get the Chip ID (AT91C_DBGU_C1R & AT91C_DBGU_C2R + __mac_i=__readMemory32(0xFFFFF240,"Memory"); + __message " ---------------------------------------- Chip ID 0x",__mac_i:%X; + __mac_i=__readMemory32(0xFFFFF244,"Memory"); + __message " ---------------------------------------- Extention 0x",__mac_i:%X; + __mac_i=__readMemory32(0xFFFFFF6C,"Memory"); + __message " ---------------------------------------- Flash Version 0x",__mac_i:%X; +//* Get the chip status + +//* Watchdog Disable +// AT91C_BASE_WDTC->WDTC_WDMR= AT91C_SYSC_WDDIS; + __writeMemory32(0x00008000,0xFFFFFD44,"Memory"); +} +//----------------------------------------------------------------------------- +// PllSetting +//------------------------------- +// Set PLL +//----------------------------------------------------------------------------- +PllSetting() +{ +// -1- Enabling the Main Oscillator: +//*#define AT91C_PMC_MOR ((AT91_REG *) 0xFFFFFC20) // (PMC) Main Oscillator Register +//*#define AT91C_PMC_PLLR ((AT91_REG *) 0xFFFFFC2C) // (PMC) PLL Register +//*#define AT91C_PMC_MCKR ((AT91_REG *) 0xFFFFFC30) // (PMC) Master Clock Register + +//*pPMC->PMC_MOR = (( AT91C_CKGR_OSCOUNT & (0x06 <<8) | //0x0000 0600 +// AT91C_CKGR_MOSCEN )); //0x0000 0001 +__writeMemory32(0x00000601,0xFFFFFC20,"Memory"); + +// -2- Wait +// -3- Setting PLL and divider: +// - div by 5 Fin = 3,6864 =(18,432 / 5) +// - Mul 25+1: Fout = 95,8464 =(3,6864 *26) +// for 96 MHz the erroe is 0.16% +// Field out NOT USED = 0 +// PLLCOUNT pll startup time esrtimate at : 0.844 ms +// PLLCOUNT 28 = 0.000844 /(1/32768) +// pPMC->PMC_PLLR = ((AT91C_CKGR_DIV & 0x05) | //0x0000 0005 +// (AT91C_CKGR_PLLCOUNT & (28<<8)) //0x0000 1C00 +// (AT91C_CKGR_MUL & (25<<16))); //0x0019 0000 +__writeMemory32(0x00191C05,0xFFFFFC2C,"Memory"); +// -2- Wait +// -5- Selection of Master Clock and Processor Clock +// select the PLL clock divided by 2 +// pPMC->PMC_MCKR = AT91C_PMC_CSS_PLL_CLK | //0x0000 0003 +// AT91C_PMC_PRES_CLK_2 ; //0x0000 0004 +__writeMemory32(0x00000007,0xFFFFFC30,"Memory"); + + __message " ---------------------------------------- PLL Enable "; +} + +CheckNoRemap() +{ +//* Read the value at 0x0 + __mac_i=__readMemory32(0x00000000,"Memory"); + __mac_i=__mac_i+1; + __writeMemory32(__mac_i,0x00,"Memory"); + __mac_pt=__readMemory32(0x00000000,"Memory"); + + if (__mac_i == __mac_pt) + { + __message "------------------------------- The Remap is done ----------------------------------------"; + + } else { + __message "------------------------------- The Remap is NOT -----------------------------------------"; +//* Toggel RESET The remap + __writeMemory32(0x00000001,0xFFFFFF00,"Memory"); + } + +} + +execUserSetup() +{ + __writeMemory32(0x0D3,0x98,"Register"); + __message "-------------------------------Set PC ----------------------------------------"; + __writeMemory32(0x00000000,0xB4,"Register"); +} + diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_V02.dep b/AT91SAM7S256/SAM7S256/Tools/LMS_V02.dep new file mode 100644 index 0000000..f926153 --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_V02.dep @@ -0,0 +1,3943 @@ + + + + 1 + + Binary Output + + $PROJ_DIR$\..\Object\LMS_V02.d79 + + + XLINK + $PROJ_DIR$\..\Object\LMS_V02.map + $PROJ_DIR$\..\Object\LMS_V02.a79 + + + + + XLINK + $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\Object\Cstartup.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $PROJ_DIR$\..\Object\c_button.r79 + $PROJ_DIR$\..\Object\c_cmd.r79 + $PROJ_DIR$\..\Object\c_comm.r79 + $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\Object\c_input.r79 + $PROJ_DIR$\..\Object\c_ioctrl.r79 + $PROJ_DIR$\..\Object\c_loader.r79 + $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\c_output.r79 + $PROJ_DIR$\..\Object\c_sound.r79 + $PROJ_DIR$\..\Object\c_ui.r79 + $PROJ_DIR$\..\Object\d_bt.r79 + $PROJ_DIR$\..\Object\d_button.r79 + $PROJ_DIR$\..\Object\d_display.r79 + $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\Object\d_input.r79 + $PROJ_DIR$\..\Object\d_ioctrl.r79 + $PROJ_DIR$\..\Object\d_loader.r79 + $PROJ_DIR$\..\Object\d_lowspeed.r79 + $PROJ_DIR$\..\Object\d_output.r79 + $PROJ_DIR$\..\Object\d_sound.r79 + $PROJ_DIR$\..\Object\d_timer.r79 + $PROJ_DIR$\..\Object\d_usb.r79 + $PROJ_DIR$\..\Object\m_sched.r79 + $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 + + + + + $PROJ_DIR$\..\..\Source\c_cmd.c + + + ICCARM + $PROJ_DIR$\..\Object\c_cmd.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_cmd.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\math.h + $PROJ_DIR$\..\Include\ymath.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + + + + + $PROJ_DIR$\..\..\Source\c_button.c + + + ICCARM + $PROJ_DIR$\..\Object\c_button.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_button.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\d_button.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\d_button.h + + + + + $PROJ_DIR$\..\..\Source\c_comm.c + + + ICCARM + $PROJ_DIR$\..\Object\c_comm.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_comm.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + + + + + $PROJ_DIR$\..\..\Source\c_display.c + + + ICCARM + $PROJ_DIR$\..\Object\c_display.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_display.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_display.h + + + BICOMP + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_display.h + + + + + $PROJ_DIR$\..\..\Source\c_input.c + + + ICCARM + $PROJ_DIR$\..\Object\c_input.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_input.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_output.iom + + + + + $PROJ_DIR$\..\..\Source\c_ioctrl.c + + + ICCARM + $PROJ_DIR$\..\Object\c_ioctrl.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_ioctrl.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + + + + + $PROJ_DIR$\..\..\Source\c_loader.c + + + ICCARM + $PROJ_DIR$\..\Object\c_loader.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_loader.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_loader.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_loader.h + + + + + $PROJ_DIR$\..\..\Source\c_lowspeed.c + + + ICCARM + $PROJ_DIR$\..\Object\c_lowspeed.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_lowspeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + + + + + $PROJ_DIR$\..\..\Source\c_output.c + + + ICCARM + $PROJ_DIR$\..\Object\c_output.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_output.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\stdbool.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_display.iom + + + BICOMP + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\stdbool.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_display.iom + + + + + $PROJ_DIR$\..\..\Source\c_sound.c + + + ICCARM + $PROJ_DIR$\..\Object\c_sound.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_sound.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\d_sound.h + + + BICOMP + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\d_sound.h + + + + + [ROOT_NODE] + + + XLINK + $PROJ_DIR$\..\Object\LMS_V02.map + $PROJ_DIR$\..\Object\LMS_V02.a79 + $PROJ_DIR$\..\Object\LMS_V02.d79 + + + + + $PROJ_DIR$\..\..\Source\d_bt.c + + + ICCARM + $PROJ_DIR$\..\Object\d_bt.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_bt.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_bt.r + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_bt.r + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + + + + + $PROJ_DIR$\..\..\Source\c_ui.c + + + ICCARM + $PROJ_DIR$\..\Object\c_ui.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_ui.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\Running.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu02.rms + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\Functions.inl + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\Test2.txt + + + BICOMP + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\Running.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu02.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\Functions.inl + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\Test2.txt + + + + + $PROJ_DIR$\..\Include\Cstartup.s79 + + + AARM + $PROJ_DIR$\..\Object\Cstartup.r79 + + + + + AARM + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + + + + + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + + + ICCARM + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + + + BICOMP + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\AT91SAM7S256.h + + + BICOMP + $PROJ_DIR$\..\Include\AT91SAM7S256.h + + + + + $PROJ_DIR$\..\..\Source\d_button.c + + + ICCARM + $PROJ_DIR$\..\Object\d_button.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_button.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\d_button.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\d_button.r + + + + + $PROJ_DIR$\..\..\Source\d_display.c + + + ICCARM + $PROJ_DIR$\..\Object\d_display.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_display.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\d_display.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\d_display.r + + + + + $PROJ_DIR$\..\..\Source\d_hispeed.c + + + ICCARM + $PROJ_DIR$\..\Object\d_hispeed.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_hispeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_hispeed.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_hispeed.r + + + + + $PROJ_DIR$\..\..\Source\d_input.c + + + ICCARM + $PROJ_DIR$\..\Object\d_input.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_input.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_input.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_input.r + + + + + $PROJ_DIR$\..\..\Source\d_ioctrl.c + + + ICCARM + $PROJ_DIR$\..\Object\d_ioctrl.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_ioctrl.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + + + BICOMP + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + + + + + $PROJ_DIR$\..\..\Source\d_loader.c + + + ICCARM + $PROJ_DIR$\..\Object\d_loader.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_loader.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + + + + + $PROJ_DIR$\..\..\Source\d_lowspeed.c + + + ICCARM + $PROJ_DIR$\..\Object\d_lowspeed.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_lowspeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.r + + + + + $PROJ_DIR$\..\..\Source\d_output.c + + + ICCARM + $PROJ_DIR$\..\Object\d_output.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_output.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_output.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_output.r + + + + + $PROJ_DIR$\..\..\Source\d_sound.c + + + ICCARM + $PROJ_DIR$\..\Object\d_sound.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_sound.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + + + + + $PROJ_DIR$\..\..\Source\d_timer.c + + + ICCARM + $PROJ_DIR$\..\Object\d_timer.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_timer.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\d_timer.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\d_timer.r + + + + + $PROJ_DIR$\..\..\Source\d_usb.c + + + ICCARM + $PROJ_DIR$\..\Object\d_usb.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_usb.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_usb.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_usb.r + + + + + $PROJ_DIR$\..\..\Source\m_sched.c + + + ICCARM + $PROJ_DIR$\..\Object\m_sched.r79 + + + BICOMP + $PROJ_DIR$\..\Object\m_sched.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_ui.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_ui.h + + + + + $PROJ_DIR$\..\Object\LMS_V02.pbd + + + BILINK + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_button.pbi + $PROJ_DIR$\..\Object\c_cmd.pbi + $PROJ_DIR$\..\Object\c_comm.pbi + $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\Object\c_input.pbi + $PROJ_DIR$\..\Object\c_ioctrl.pbi + $PROJ_DIR$\..\Object\c_loader.pbi + $PROJ_DIR$\..\Object\c_lowspeed.pbi + $PROJ_DIR$\..\Object\c_output.pbi + $PROJ_DIR$\..\Object\c_sound.pbi + $PROJ_DIR$\..\Object\c_ui.pbi + $PROJ_DIR$\..\Object\d_bt.pbi + $PROJ_DIR$\..\Object\d_button.pbi + $PROJ_DIR$\..\Object\d_display.pbi + $PROJ_DIR$\..\Object\d_hispeed.pbi + $PROJ_DIR$\..\Object\d_input.pbi + $PROJ_DIR$\..\Object\d_ioctrl.pbi + $PROJ_DIR$\..\Object\d_loader.pbi + $PROJ_DIR$\..\Object\d_lowspeed.pbi + $PROJ_DIR$\..\Object\d_output.pbi + $PROJ_DIR$\..\Object\d_sound.pbi + $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\Object\d_usb.pbi + $PROJ_DIR$\..\Object\m_sched.pbi + + + + + $PROJ_DIR$\Binary Output\Obj\LMS_V02.pbd + + + BILINK + $PROJ_DIR$\Binary Output\Obj\Cstartup_SAM7.pbi + $PROJ_DIR$\Binary Output\Obj\c_button.pbi + $PROJ_DIR$\Binary Output\Obj\c_cmd.pbi + $PROJ_DIR$\Binary Output\Obj\c_comm.pbi + $PROJ_DIR$\Binary Output\Obj\c_display.pbi + $PROJ_DIR$\Binary Output\Obj\c_input.pbi + $PROJ_DIR$\Binary Output\Obj\c_ioctrl.pbi + $PROJ_DIR$\Binary Output\Obj\c_loader.pbi + $PROJ_DIR$\Binary Output\Obj\c_lowspeed.pbi + $PROJ_DIR$\Binary Output\Obj\c_output.pbi + $PROJ_DIR$\Binary Output\Obj\c_sound.pbi + $PROJ_DIR$\Binary Output\Obj\c_ui.pbi + $PROJ_DIR$\Binary Output\Obj\d_bt.pbi + $PROJ_DIR$\Binary Output\Obj\d_button.pbi + $PROJ_DIR$\Binary Output\Obj\d_display.pbi + $PROJ_DIR$\Binary Output\Obj\d_hispeed.pbi + $PROJ_DIR$\Binary Output\Obj\d_input.pbi + $PROJ_DIR$\Binary Output\Obj\d_ioctrl.pbi + $PROJ_DIR$\Binary Output\Obj\d_loader.pbi + $PROJ_DIR$\Binary Output\Obj\d_lowspeed.pbi + $PROJ_DIR$\Binary Output\Obj\d_output.pbi + $PROJ_DIR$\Binary Output\Obj\d_sound.pbi + $PROJ_DIR$\Binary Output\Obj\d_timer.pbi + $PROJ_DIR$\Binary Output\Obj\d_usb.pbi + $PROJ_DIR$\Binary Output\Obj\m_sched.pbi + + + + + $PROJ_DIR$\Binary Output\Exe\LMS_V02.d79 + + + XLINK + $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\Binary Output\Obj\Cstartup.r79 + $PROJ_DIR$\Binary Output\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\Binary Output\Obj\c_button.r79 + $PROJ_DIR$\Binary Output\Obj\c_cmd.r79 + $PROJ_DIR$\Binary Output\Obj\c_comm.r79 + $PROJ_DIR$\Binary Output\Obj\c_display.r79 + $PROJ_DIR$\Binary Output\Obj\c_input.r79 + $PROJ_DIR$\Binary Output\Obj\c_ioctrl.r79 + $PROJ_DIR$\Binary Output\Obj\c_loader.r79 + $PROJ_DIR$\Binary Output\Obj\c_lowspeed.r79 + $PROJ_DIR$\Binary Output\Obj\c_output.r79 + $PROJ_DIR$\Binary Output\Obj\c_sound.r79 + $PROJ_DIR$\Binary Output\Obj\c_ui.r79 + $PROJ_DIR$\Binary Output\Obj\d_bt.r79 + $PROJ_DIR$\Binary Output\Obj\d_button.r79 + $PROJ_DIR$\Binary Output\Obj\d_display.r79 + $PROJ_DIR$\Binary Output\Obj\d_hispeed.r79 + $PROJ_DIR$\Binary Output\Obj\d_input.r79 + $PROJ_DIR$\Binary Output\Obj\d_ioctrl.r79 + $PROJ_DIR$\Binary Output\Obj\d_loader.r79 + $PROJ_DIR$\Binary Output\Obj\d_lowspeed.r79 + $PROJ_DIR$\Binary Output\Obj\d_output.r79 + $PROJ_DIR$\Binary Output\Obj\d_sound.r79 + $PROJ_DIR$\Binary Output\Obj\d_timer.r79 + $PROJ_DIR$\Binary Output\Obj\d_usb.r79 + $PROJ_DIR$\Binary Output\Obj\m_sched.r79 + $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 + + + + + [REBUILD_ALL] + + + + Debug + + $PROJ_DIR$\..\Object\LMS_V02.d79 + + + XLINK + $PROJ_DIR$\..\Object\LMS_V02.map + $PROJ_DIR$\..\Object\LMS_V02.sim + + + + + XLINK + $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\Object\Cstartup.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $PROJ_DIR$\..\Object\c_button.r79 + $PROJ_DIR$\..\Object\c_cmd.r79 + $PROJ_DIR$\..\Object\c_comm.r79 + $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\Object\c_input.r79 + $PROJ_DIR$\..\Object\c_ioctrl.r79 + $PROJ_DIR$\..\Object\c_loader.r79 + $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\c_output.r79 + $PROJ_DIR$\..\Object\c_sound.r79 + $PROJ_DIR$\..\Object\c_ui.r79 + $PROJ_DIR$\..\Object\d_bt.r79 + $PROJ_DIR$\..\Object\d_button.r79 + $PROJ_DIR$\..\Object\d_display.r79 + $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\Object\d_input.r79 + $PROJ_DIR$\..\Object\d_ioctrl.r79 + $PROJ_DIR$\..\Object\d_loader.r79 + $PROJ_DIR$\..\Object\d_lowspeed.r79 + $PROJ_DIR$\..\Object\d_output.r79 + $PROJ_DIR$\..\Object\d_sound.r79 + $PROJ_DIR$\..\Object\d_timer.r79 + $PROJ_DIR$\..\Object\d_usb.r79 + $PROJ_DIR$\..\Object\m_sched.r79 + $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 + + + + + $PROJ_DIR$\..\..\Source\c_cmd.c + + + ICCARM + $PROJ_DIR$\..\Object\c_cmd.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_cmd.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\math.h + $PROJ_DIR$\..\Include\ymath.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + + + + + $PROJ_DIR$\..\..\Source\c_button.c + + + ICCARM + $PROJ_DIR$\..\Object\c_button.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_button.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\d_button.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\d_button.h + + + + + $PROJ_DIR$\..\..\Source\c_comm.c + + + ICCARM + $PROJ_DIR$\..\Object\c_comm.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_comm.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + + + + + $PROJ_DIR$\..\..\Source\c_display.c + + + ICCARM + $PROJ_DIR$\..\Object\c_display.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_display.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_display.h + + + BICOMP + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_display.h + + + + + $PROJ_DIR$\..\..\Source\c_input.c + + + ICCARM + $PROJ_DIR$\..\Object\c_input.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_input.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_output.iom + + + + + $PROJ_DIR$\..\..\Source\c_ioctrl.c + + + ICCARM + $PROJ_DIR$\..\Object\c_ioctrl.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_ioctrl.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + + + + + $PROJ_DIR$\..\..\Source\c_loader.c + + + ICCARM + $PROJ_DIR$\..\Object\c_loader.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_loader.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_loader.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_loader.h + + + + + $PROJ_DIR$\..\..\Source\c_lowspeed.c + + + ICCARM + $PROJ_DIR$\..\Object\c_lowspeed.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_lowspeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + + + + + $PROJ_DIR$\..\..\Source\c_output.c + + + ICCARM + $PROJ_DIR$\..\Object\c_output.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_output.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\stdbool.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_display.iom + + + BICOMP + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\stdbool.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_display.iom + + + + + $PROJ_DIR$\..\..\Source\c_sound.c + + + ICCARM + $PROJ_DIR$\..\Object\c_sound.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_sound.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\d_sound.h + + + BICOMP + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\d_sound.h + + + + + [ROOT_NODE] + + + XLINK + $PROJ_DIR$\..\Object\LMS_V02.map + $PROJ_DIR$\..\Object\LMS_V02.d79 + $PROJ_DIR$\..\Object\LMS_V02.sim + + + + + $PROJ_DIR$\..\..\Source\d_bt.c + + + ICCARM + $PROJ_DIR$\..\Object\d_bt.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_bt.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_bt.r + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_bt.r + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + + + + + $PROJ_DIR$\..\..\Source\c_ui.c + + + ICCARM + $PROJ_DIR$\..\Object\c_ui.r79 + + + BICOMP + $PROJ_DIR$\..\Object\c_ui.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\Running.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu02.rms + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\Functions.inl + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\Test2.txt + + + BICOMP + $PROJ_DIR$\..\Include\stdio.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\Running.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu02.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\Functions.inl + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\Test2.txt + + + + + $PROJ_DIR$\..\Include\Cstartup.s79 + + + AARM + $PROJ_DIR$\..\Object\Cstartup.r79 + + + + + AARM + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + + + + + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + + + ICCARM + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + + + BICOMP + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\AT91SAM7S256.h + + + BICOMP + $PROJ_DIR$\..\Include\AT91SAM7S256.h + + + + + $PROJ_DIR$\..\..\Source\d_button.c + + + ICCARM + $PROJ_DIR$\..\Object\d_button.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_button.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\d_button.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\d_button.r + + + + + $PROJ_DIR$\..\..\Source\d_display.c + + + ICCARM + $PROJ_DIR$\..\Object\d_display.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_display.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\d_display.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\d_display.r + + + + + $PROJ_DIR$\..\..\Source\d_hispeed.c + + + ICCARM + $PROJ_DIR$\..\Object\d_hispeed.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_hispeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_hispeed.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_hispeed.r + + + + + $PROJ_DIR$\..\..\Source\d_input.c + + + ICCARM + $PROJ_DIR$\..\Object\d_input.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_input.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_input.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_input.r + + + + + $PROJ_DIR$\..\..\Source\d_ioctrl.c + + + ICCARM + $PROJ_DIR$\..\Object\d_ioctrl.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_ioctrl.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + + + BICOMP + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + + + + + $PROJ_DIR$\..\..\Source\d_loader.c + + + ICCARM + $PROJ_DIR$\..\Object\d_loader.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_loader.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\Include\string.h + $PROJ_DIR$\..\Include\yvals.h + $PROJ_DIR$\..\Include\DLib_Defaults.h + $PROJ_DIR$\..\Include\DLib_Product.h + $PROJ_DIR$\..\Include\xencoding_limits.h + $PROJ_DIR$\..\Include\ysizet.h + $PROJ_DIR$\..\Include\ctype.h + $PROJ_DIR$\..\Include\xlocale.h + $PROJ_DIR$\..\Include\xtls.h + $PROJ_DIR$\..\Include\xmtx.h + $PROJ_DIR$\..\Include\stdlib.h + $PROJ_DIR$\..\Include\xlocaleuse.h + $PROJ_DIR$\..\Include\xlocale_c.h + $PROJ_DIR$\..\Include\xtinfo.h + $PROJ_DIR$\..\Include\time.h + $PROJ_DIR$\..\Include\wchar.h + + + + + $PROJ_DIR$\..\..\Source\d_lowspeed.c + + + ICCARM + $PROJ_DIR$\..\Object\d_lowspeed.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_lowspeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.r + + + + + $PROJ_DIR$\..\..\Source\d_output.c + + + ICCARM + $PROJ_DIR$\..\Object\d_output.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_output.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_output.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_output.r + + + + + $PROJ_DIR$\..\..\Source\d_sound.c + + + ICCARM + $PROJ_DIR$\..\Object\d_sound.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_sound.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + + + + + $PROJ_DIR$\..\..\Source\d_timer.c + + + ICCARM + $PROJ_DIR$\..\Object\d_timer.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_timer.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\d_timer.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\d_timer.r + + + + + $PROJ_DIR$\..\..\Source\d_usb.c + + + ICCARM + $PROJ_DIR$\..\Object\d_usb.r79 + + + BICOMP + $PROJ_DIR$\..\Object\d_usb.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_usb.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_usb.r + + + + + $PROJ_DIR$\..\..\Source\m_sched.c + + + ICCARM + $PROJ_DIR$\..\Object\m_sched.r79 + + + BICOMP + $PROJ_DIR$\..\Object\m_sched.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_ui.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_ui.h + + + + + $PROJ_DIR$\..\Object\LMS_V02.pbd + + + BILINK + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_button.pbi + $PROJ_DIR$\..\Object\c_cmd.pbi + $PROJ_DIR$\..\Object\c_comm.pbi + $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\Object\c_input.pbi + $PROJ_DIR$\..\Object\c_ioctrl.pbi + $PROJ_DIR$\..\Object\c_loader.pbi + $PROJ_DIR$\..\Object\c_lowspeed.pbi + $PROJ_DIR$\..\Object\c_output.pbi + $PROJ_DIR$\..\Object\c_sound.pbi + $PROJ_DIR$\..\Object\c_ui.pbi + $PROJ_DIR$\..\Object\d_bt.pbi + $PROJ_DIR$\..\Object\d_button.pbi + $PROJ_DIR$\..\Object\d_display.pbi + $PROJ_DIR$\..\Object\d_hispeed.pbi + $PROJ_DIR$\..\Object\d_input.pbi + $PROJ_DIR$\..\Object\d_ioctrl.pbi + $PROJ_DIR$\..\Object\d_loader.pbi + $PROJ_DIR$\..\Object\d_lowspeed.pbi + $PROJ_DIR$\..\Object\d_output.pbi + $PROJ_DIR$\..\Object\d_sound.pbi + $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\Object\d_usb.pbi + $PROJ_DIR$\..\Object\m_sched.pbi + + + + + $PROJ_DIR$\Debug\Obj\LMS_V02.pbd + + + BILINK + $PROJ_DIR$\Debug\Obj\Cstartup_SAM7.pbi + $PROJ_DIR$\Debug\Obj\c_button.pbi + $PROJ_DIR$\Debug\Obj\c_cmd.pbi + $PROJ_DIR$\Debug\Obj\c_comm.pbi + $PROJ_DIR$\Debug\Obj\c_display.pbi + $PROJ_DIR$\Debug\Obj\c_input.pbi + $PROJ_DIR$\Debug\Obj\c_ioctrl.pbi + $PROJ_DIR$\Debug\Obj\c_loader.pbi + $PROJ_DIR$\Debug\Obj\c_lowspeed.pbi + $PROJ_DIR$\Debug\Obj\c_output.pbi + $PROJ_DIR$\Debug\Obj\c_sound.pbi + $PROJ_DIR$\Debug\Obj\c_ui.pbi + $PROJ_DIR$\Debug\Obj\d_bt.pbi + $PROJ_DIR$\Debug\Obj\d_button.pbi + $PROJ_DIR$\Debug\Obj\d_display.pbi + $PROJ_DIR$\Debug\Obj\d_hispeed.pbi + $PROJ_DIR$\Debug\Obj\d_input.pbi + $PROJ_DIR$\Debug\Obj\d_ioctrl.pbi + $PROJ_DIR$\Debug\Obj\d_loader.pbi + $PROJ_DIR$\Debug\Obj\d_lowspeed.pbi + $PROJ_DIR$\Debug\Obj\d_output.pbi + $PROJ_DIR$\Debug\Obj\d_sound.pbi + $PROJ_DIR$\Debug\Obj\d_timer.pbi + $PROJ_DIR$\Debug\Obj\d_usb.pbi + $PROJ_DIR$\Debug\Obj\m_sched.pbi + + + + + + Release + + $PROJ_DIR$\..\..\Source\c_cmd.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_cmd.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_cmd.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\d_timer.h + $TOOLKIT_DIR$\inc\stdio.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\d_timer.h + $TOOLKIT_DIR$\inc\stdio.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + + + + + $PROJ_DIR$\..\..\Source\c_button.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_button.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_button.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\d_button.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\d_button.h + + + + + $PROJ_DIR$\..\..\Source\c_comm.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_comm.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_comm.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_bt.h + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\ctype.h + $TOOLKIT_DIR$\inc\xlocale.h + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\stdlib.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\time.h + $TOOLKIT_DIR$\inc\wchar.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_bt.h + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\ctype.h + $TOOLKIT_DIR$\inc\xlocale.h + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\stdlib.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\time.h + $TOOLKIT_DIR$\inc\wchar.h + + + + + $PROJ_DIR$\..\..\Source\c_display.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_display.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_display.pbi + + + + + ICCARM + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_display.h + + + BICOMP + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_display.h + + + + + $PROJ_DIR$\..\..\Source\c_input.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_input.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_input.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_output.iom + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_output.iom + + + + + $PROJ_DIR$\..\..\Source\c_ioctrl.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_ioctrl.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_ioctrl.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + + + + + $PROJ_DIR$\..\..\Source\c_loader.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_loader.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_loader.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_loader.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_loader.h + + + + + $PROJ_DIR$\..\..\Source\c_lowspeed.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_lowspeed.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_lowspeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + + + + + $PROJ_DIR$\..\..\Source\c_output.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_output.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_output.pbi + + + + + ICCARM + $TOOLKIT_DIR$\inc\stdio.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_display.iom + + + BICOMP + $TOOLKIT_DIR$\inc\stdio.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_display.iom + + + + + $PROJ_DIR$\..\..\Source\c_sound.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_sound.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_sound.pbi + + + + + ICCARM + $TOOLKIT_DIR$\inc\stdlib.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\d_sound.h + + + BICOMP + $TOOLKIT_DIR$\inc\stdlib.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\d_sound.h + + + + + [ROOT_NODE] + + + XLINK + $PROJ_DIR$\Release\Exe\LMS_V02.elf + + + + + $PROJ_DIR$\Release\Obj\LMS_V02.pbd + + + BILINK + $PROJ_DIR$\Release\Obj\Cstartup_SAM7.pbi + $PROJ_DIR$\Release\Obj\c_button.pbi + $PROJ_DIR$\Release\Obj\c_cmd.pbi + $PROJ_DIR$\Release\Obj\c_comm.pbi + $PROJ_DIR$\Release\Obj\c_display.pbi + $PROJ_DIR$\Release\Obj\c_input.pbi + $PROJ_DIR$\Release\Obj\c_ioctrl.pbi + $PROJ_DIR$\Release\Obj\c_loader.pbi + $PROJ_DIR$\Release\Obj\c_lowspeed.pbi + $PROJ_DIR$\Release\Obj\c_output.pbi + $PROJ_DIR$\Release\Obj\c_sound.pbi + $PROJ_DIR$\Release\Obj\c_ui.pbi + $PROJ_DIR$\Release\Obj\d_bt.pbi + $PROJ_DIR$\Release\Obj\d_button.pbi + $PROJ_DIR$\Release\Obj\d_display.pbi + $PROJ_DIR$\Release\Obj\d_hispeed.pbi + $PROJ_DIR$\Release\Obj\d_input.pbi + $PROJ_DIR$\Release\Obj\d_ioctrl.pbi + $PROJ_DIR$\Release\Obj\d_loader.pbi + $PROJ_DIR$\Release\Obj\d_lowspeed.pbi + $PROJ_DIR$\Release\Obj\d_output.pbi + $PROJ_DIR$\Release\Obj\d_sound.pbi + $PROJ_DIR$\Release\Obj\d_timer.pbi + $PROJ_DIR$\Release\Obj\d_usb.pbi + $PROJ_DIR$\Release\Obj\m_sched.pbi + + + + + $PROJ_DIR$\..\..\Source\d_bt.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_bt.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_bt.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + + + + + $PROJ_DIR$\..\..\Source\c_ui.c + + + ICCARM + $PROJ_DIR$\Release\Obj\c_ui.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\c_ui.pbi + + + + + ICCARM + $TOOLKIT_DIR$\inc\stdio.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\ctype.h + $TOOLKIT_DIR$\inc\xlocale.h + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\stdlib.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\time.h + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\Running.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu02.rms + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\Functions.inl + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\Test2.txt + + + BICOMP + $TOOLKIT_DIR$\inc\stdio.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\ctype.h + $TOOLKIT_DIR$\inc\xlocale.h + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\stdlib.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\time.h + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\Running.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu02.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\Functions.inl + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\Test2.txt + + + + + $PROJ_DIR$\..\Include\Cstartup.s79 + + + AARM + $PROJ_DIR$\Release\Obj\Cstartup.r79 + + + + + AARM + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + + + + + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + + + ICCARM + $PROJ_DIR$\Release\Obj\Cstartup_SAM7.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\Cstartup_SAM7.pbi + + + + + ICCARM + $PROJ_DIR$\..\Include\AT91SAM7S256.h + + + BICOMP + $PROJ_DIR$\..\Include\AT91SAM7S256.h + + + + + $PROJ_DIR$\..\..\Source\d_button.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_button.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_button.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\d_button.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\d_button.r + + + + + $PROJ_DIR$\..\..\Source\d_display.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_display.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_display.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\d_display.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\d_display.r + + + + + $PROJ_DIR$\..\..\Source\d_hispeed.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_hispeed.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_hispeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_hispeed.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\d_hispeed.r + + + + + $PROJ_DIR$\..\..\Source\d_input.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_input.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_input.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_input.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_input.r + + + + + $PROJ_DIR$\..\..\Source\d_ioctrl.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_ioctrl.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_ioctrl.pbi + + + + + ICCARM + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + + + BICOMP + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + + + + + $PROJ_DIR$\..\..\Source\d_loader.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_loader.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_loader.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\d_loader.r + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\ctype.h + $TOOLKIT_DIR$\inc\xlocale.h + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\stdlib.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\time.h + $TOOLKIT_DIR$\inc\wchar.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\d_loader.r + $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $TOOLKIT_DIR$\inc\ysizet.h + $TOOLKIT_DIR$\inc\ctype.h + $TOOLKIT_DIR$\inc\xlocale.h + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\stdlib.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\time.h + $TOOLKIT_DIR$\inc\wchar.h + + + + + $PROJ_DIR$\..\..\Source\d_lowspeed.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_lowspeed.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_lowspeed.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $PROJ_DIR$\..\..\Source\d_lowspeed.r + + + + + $PROJ_DIR$\..\..\Source\d_output.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_output.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_output.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_output.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_output.r + + + + + $PROJ_DIR$\..\..\Source\d_sound.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_sound.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_sound.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + + + + + $PROJ_DIR$\..\..\Source\d_timer.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_timer.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_timer.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\d_timer.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\d_timer.r + + + + + $PROJ_DIR$\..\..\Source\d_usb.c + + + ICCARM + $PROJ_DIR$\Release\Obj\d_usb.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\d_usb.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_usb.r + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\d_usb.r + + + + + $PROJ_DIR$\..\..\Source\m_sched.c + + + ICCARM + $PROJ_DIR$\Release\Obj\m_sched.r79 + + + BICOMP + $PROJ_DIR$\Release\Obj\m_sched.pbi + + + + + ICCARM + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_ui.h + + + BICOMP + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_ui.h + + + + + [MULTI_TOOL] + XLINK + + + + + diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewd b/AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewd new file mode 100644 index 0000000..2697e49 --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewd @@ -0,0 +1,1354 @@ + + + + 1 + + Debug + + ARM + + 1 + + C-SPY + 2 + + 12 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 0 + 1 + 1 + + + + + ANGEL_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + + + IARROM_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + JLINK_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + MACRAIGOR_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + + + + RDI_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 1 + + + + + + + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ewplugin + 1 + + + $EW_DIR$\common\plugins\Profiling\Profiling.ewplugin + 1 + + + $EW_DIR$\common\plugins\Trace\Trace.ewplugin + 1 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CMXArmPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CMXTinyArmPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ewplugin + 0 + + + + + Release + + ARM + + 0 + + C-SPY + 2 + + 12 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 0 + 1 + 0 + + + + + ANGEL_ID + 2 + + 0 + 1 + 0 + + + + + + + + + + + + IARROM_ID + 2 + + 0 + 1 + 0 + + + + + + + + + + JLINK_ID + 2 + + 1 + 1 + 0 + + + + + + + + + + + + + + + MACRAIGOR_ID + 2 + + 1 + 1 + 0 + + + + + + + + + + + + + + + + + + RDI_ID + 2 + + 1 + 1 + 0 + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 0 + + + + + + + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ewplugin + 1 + + + $EW_DIR$\common\plugins\Profiling\Profiling.ewplugin + 1 + + + $EW_DIR$\common\plugins\Trace\Trace.ewplugin + 1 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CMXArmPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CMXTinyArmPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ewplugin + 0 + + + + + Binary Output + + ARM + + 1 + + C-SPY + 2 + + 12 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ARMSIM_ID + 2 + + 0 + 1 + 1 + + + + + ANGEL_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + + + IARROM_ID + 2 + + 0 + 1 + 1 + + + + + + + + + + JLINK_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + MACRAIGOR_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + + + + RDI_ID + 2 + + 1 + 1 + 1 + + + + + + + + + + + + + + + + + THIRDPARTY_ID + 2 + + 0 + 1 + 1 + + + + + + + + + $EW_DIR$\common\plugins\CodeCoverage\CodeCoverage.ewplugin + 1 + + + $EW_DIR$\common\plugins\Profiling\Profiling.ewplugin + 1 + + + $EW_DIR$\common\plugins\Trace\Trace.ewplugin + 1 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CMXArmPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\CMX\CMXTinyArmPlugin.ewplugin + 0 + + + $TOOLKIT_DIR$\plugins\rtos\ThreadX\ThreadXArmPlugin.ewplugin + 0 + + + + + + diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewp b/AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewp new file mode 100644 index 0000000..91ec93f --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_V02.ewp @@ -0,0 +1,2531 @@ + + + + 1 + + Debug + + ARM + + 1 + + General + 2 + + 8 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 11 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 5 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CUSTOM + 3 + + + + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + XLINK + 2 + + 17 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XAR + 2 + + 0 + 1 + 1 + + + + + + + BILINK + 0 + + + + + Release + + ARM + + 0 + + General + 2 + + 8 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 11 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 5 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CUSTOM + 3 + + + + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + XLINK + 2 + + 17 + 1 + 0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XAR + 2 + + 0 + 1 + 0 + + + + + + + BILINK + 0 + + + + + Binary Output + + ARM + + 1 + + General + 2 + + 8 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ICCARM + 2 + + 11 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + AARM + 2 + + 5 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CUSTOM + 3 + + + + + + + BICOMP + 0 + + + + BUILDACTION + 1 + + + + + + + XLINK + 2 + + 17 + 1 + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + XAR + 2 + + 0 + 1 + 1 + + + + + + + BILINK + 0 + + + + + $PROJ_DIR$\..\..\Source\c_button.c + + + $PROJ_DIR$\..\..\Source\c_cmd.c + + + $PROJ_DIR$\..\..\Source\c_comm.c + + + $PROJ_DIR$\..\..\Source\c_display.c + + + $PROJ_DIR$\..\..\Source\c_input.c + + + $PROJ_DIR$\..\..\Source\c_ioctrl.c + + + $PROJ_DIR$\..\..\Source\c_loader.c + + + $PROJ_DIR$\..\..\Source\c_lowspeed.c + + + $PROJ_DIR$\..\..\Source\c_output.c + + + $PROJ_DIR$\..\..\Source\c_sound.c + + + $PROJ_DIR$\..\..\Source\c_ui.c + + + $PROJ_DIR$\..\Include\Cstartup.s79 + + + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + + + $PROJ_DIR$\..\..\Source\d_bt.c + + + $PROJ_DIR$\..\..\Source\d_button.c + + + $PROJ_DIR$\..\..\Source\d_display.c + + + $PROJ_DIR$\..\..\Source\d_hispeed.c + + + $PROJ_DIR$\..\..\Source\d_input.c + + + $PROJ_DIR$\..\..\Source\d_ioctrl.c + + + $PROJ_DIR$\..\..\Source\d_loader.c + + + $PROJ_DIR$\..\..\Source\d_lowspeed.c + + + $PROJ_DIR$\..\..\Source\d_output.c + + + $PROJ_DIR$\..\..\Source\d_sound.c + + + $PROJ_DIR$\..\..\Source\d_timer.c + + + $PROJ_DIR$\..\..\Source\d_usb.c + + + $PROJ_DIR$\..\..\Source\m_sched.c + + + + diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_V02.eww b/AT91SAM7S256/SAM7S256/Tools/LMS_V02.eww new file mode 100644 index 0000000..9993f4f --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_V02.eww @@ -0,0 +1,10 @@ + + + + + $WS_DIR$\LMS_V02.ewp + + + + + diff --git a/AT91SAM7S256/SAM7S256/Tools/at91SAM7S256_64KRAM.xcl b/AT91SAM7S256/SAM7S256/Tools/at91SAM7S256_64KRAM.xcl new file mode 100644 index 0000000..610e114 --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/at91SAM7S256_64KRAM.xcl @@ -0,0 +1,136 @@ +// --------------------------------------------------------- +// ATMEL Microcontroller Software Support - ROUSSET - +// --------------------------------------------------------- +// The software is delivered "AS IS" without warranty or +// condition of any kind, either express, implied or +// statutory. This includes without limitation any warranty +// or condition with respect to merchantability or fitness +// for any particular purpose, or against the infringements of +// intellectual property rights of others. +// --------------------------------------------------------- +// File: at91SAM7S256_64KRAM.xlc +// +// 1.1 24/Feb/05 JPP : Creation for 4.11A +// $Revision: 1.1 $ +// +// --------------------------------------------------------- + +//************************************************************************* +// XLINK command file template for EWARM/ICCARM +// +// Usage: xlink -f lnkarm +// -s +// +// $Revision: 1.1 $ +//************************************************************************* + +//************************************************ +// Inform the linker about the CPU family used. +// AT91SAM7S256 Memory mapping +// No remap +// ROMSTART +// Start address 0x0000 0000 +// Size 256 Kbo 0x0004 0000 +// RAMSTART +// Start address 0x0020 0000 +// Size 64 Kbo 0x0001 0000 +// Remap done +// RAMSTART +// Start address 0x0000 0000 +// Size 64 Kbo 0x0001 0000 +// ROMSTART +// Start address 0x0010 0000 +// Size 256 Kbo 0x0004 0000 + +//************************************************ +-carm + +//************************************************************************* +// Internal Ram segments mapped AFTER REMAP 64 K. +//************************************************************************* +// Use these addresses for the . +-Z(CONST)INTRAMSTART_REMAP=00000000 +-Z(CONST)INTRAMEND_REMAP=0000FFFF + +//************************************************************************* +// Read-only segments mapped to Flash 256 K. +//************************************************************************* +-DROMSTART=00000000 +-DROMEND=0003FFFF +//************************************************************************* +// Read/write segments mapped to 64 K RAM. +//************************************************************************* +-DRAMSTART=00000000 +-DRAMEND=0000FFFF + +//************************************************ +// Address range for reset and exception +// vectors (INTVEC). +// The vector area is 32 bytes, +// an additional 32 bytes is allocated for the +// constant table used by ldr PC in cstartup.s79. +//************************************************ +-Z(CODE)INTVEC=00-3F + +//************************************************ +// Startup code and exception routines (ICODE). +//************************************************ +-Z(CODE)ICODE,DIFUNCT=ROMSTART-ROMEND +-Z(CODE)SWITAB=ROMSTART-ROMEND + +//************************************************ +// Code segments may be placed anywhere. +//************************************************ +-Z(CODE)CODE=ROMSTART-ROMEND + +//************************************************ +// Various constants and initializers. +//************************************************ +-Z(CONST)INITTAB,DATA_ID,DATA_C=ROMSTART-ROMEND +-Z(CONST)CHECKSUM=ROMSTART-ROMEND + +//************************************************ +// Data segments. +//************************************************ +-Z(DATA)DATA_I,DATA_Z,DATA_N=RAMSTART-RAMEND + +//************************************************ +// __ramfunc code copied to and executed from RAM. +//************************************************ +-Z(DATA)CODE_I=RAMSTART-RAMEND +-Z(CONST)CODE_ID=ROMSTART-ROMEND // Initializer for +-QCODE_I=CODE_ID + +//************************************************ +// ICCARM produces code for __ramfunc functions in +// CODE_I segments. The -Q XLINK command line +// option redirects XLINK to emit the code in the +// debug information associated with the CODE_I +// segment, where the code will execute. +//************************************************ + +//************************************************************************* +// Stack and heap segments. +//************************************************************************* +-D_CSTACK_SIZE=(100*4) +-D_IRQ_STACK_SIZE=(3*8*4) + +-Z(DATA)CSTACK+_CSTACK_SIZE=RAMSTART-RAMEND +-Z(DATA)IRQ_STACK+_IRQ_STACK_SIZE=RAMSTART-RAMEND + +//************************************************************************* +// ELF/DWARF support. +// +// Uncomment the line "-Felf" below to generate ELF/DWARF output. +// Available format specifiers are: +// +// "-yn": Suppress DWARF debug output +// "-yp": Multiple ELF program sections +// "-yas": Format suitable for debuggers from ARM Ltd (also sets -p flag) +// +// "-Felf" and the format specifiers can also be supplied directly as +// command line options, or selected from the Xlink Output tab in the +// IAR Embedded Workbench. +//************************************************************************* + +// -Felf diff --git a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dbgdt b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dbgdt new file mode 100644 index 0000000..f01f0da --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dbgdt @@ -0,0 +1,96 @@ + + + + + + 300BuildBreakpointsWatchFind-in-FilesRegisterDisassembly + + + + + + + 257272727 + + + + + + + + 300 + + + + 100 + + + + + + 2091524461300Debug-LogBreakpointsWatchFind-in-FilesRegisterDisassembly + + + + + + {W}Watch-0:FILEVERSION4{W}Watch-0:TimerValue4{W}Watch-1:AT91C_PITC_CPIV4{W}Watch-1:I2CTimerValue4{W}Watch-2:ErrorCode4{W}Watch-2:FileSize4{W}Watch-2:Handle4 + + + + + + + 300Debug-LogBuildBreakpointsFind-in-FilesRegisterDisassembly + + + + + 113156100100 + + + + + + + 300 + + + 10 + 300Debug-LogBuildBreakpointsWatchFind-in-FilesDisassembly + 300Debug-LogBuildWatchFind-in-FilesRegisterDisassembly100144062754300Debug-LogBuildBreakpointsWatchRegisterDisassembly + + + + + + + + + TabID-4195-23593 + Workspace + Workspace + + + LMS_V02 + + + + 0TabID-11197-31354DisassemblyDisassembly0 + + + + + + TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_display.c00668668TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_display.r02591136311363TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_ioctrl.c03614171417TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\m_sched.c03912111211TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_bt.c011724292429TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_input.c00603603TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_ui.c013753656736567TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_sound.c06219141914TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_loader.r00638638TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_output.c013348394839TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_button.c00632632TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_display.c08011963419634TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_input.c118569476947TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\SAM7S256\include\sam7s256.c030994994TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_ioctrl.r01331077210772TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_timer.c024574574TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_ioctrl.c0671171116TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_cmd.c011163357433574TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_output.c022599509950TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\SAM7S256\Include\Cstartup.s790000TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_loader.c09224512460TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\c_comm.c05751671816718TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_loader.c03491088510893TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\SAM7S256\Include\ctype.h08321172117TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\SAM7S256\Include\xlocale_c.h07921242124TextEditorC:\Projects\LMS2006\Sys01\Main_V02\Firmware\Source\d_loader.h041153715470100000010000001 + + + + + + + iaridepm1debuggergui1-2-2682331-2-20000260156721518-2-21981282-2-212842001003125210970156250210970 + + + + diff --git a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dni b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dni new file mode 100644 index 0000000..66e9fea --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.dni @@ -0,0 +1,33 @@ +[JLinkDriver] +WatchVectorCatch=_ 0 +WatchCond=_ 0 +Watch0=_ 0 "" 0 "" 0 "" 0 "" 0 0 0 0 +Watch1=_ 0 "" 0 "" 0 "" 0 "" 0 0 0 0 +[Interrupts] +Enabled=1 +[MemoryMap] +Enabled=0 +TypeVolition=1 +UnspecRange=1 +ActionState=1 +[TraceHelper] +Enabled=0 +ShowSource=1 +[DisAssemblyWindow] +NumStates=_ 2 +State 1=_ 1 +State 2=_ 1 +[Log file] +LoggingEnabled=_ 0 +LogFile=_ "" +Category=_ 0 +[TermIOLog] +LoggingEnabled=_ 0 +LogFile=_ "" +[Low Level] +Pipeline mode=0 +Initialized=1 +[Disassemble mode] +mode=0 +[Breakpoints] +Count=0 diff --git a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.wsdt b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.wsdt new file mode 100644 index 0000000..224de7b --- /dev/null +++ b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_V02.wsdt @@ -0,0 +1,49 @@ + + + + + + LMS_V02/Debug + + + + + + + + + 195272727 + + 209152446144062754 + + + + + + TabID-29459-4824 + Workspace + Workspace + + + LMS_V02 + + + + 0TabID-23961-16799BuildBuildTabID-20756-18779Find in FilesFind-in-FilesTabID-17651-16550BreakpointsBreakpointsTabID-5818-583Debug LogDebug-Log0 + + + + + + 0100000010000001 + + + + + + + iaridepm1-2-2753269-2-20000211718796413-2-21511282-2-21284153100312516139200 + + + + -- cgit v1.2.3