From 6c5075bc99ba07f46562f7f10db14e153d7a93ec Mon Sep 17 00:00:00 2001 From: jhansen Date: Mon, 26 Apr 2010 21:49:44 +0000 Subject: git-svn-id: https://mindboards.svn.sourceforge.net/svnroot/mindboards/lms_nbcnxc_128/trunk@6 c9361245-7fe8-9947-84e8-057757c4e366 --- AT91SAM7S256/Source/c_comm.iom | 61 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 60 insertions(+), 1 deletion(-) (limited to 'AT91SAM7S256/Source/c_comm.iom') diff --git a/AT91SAM7S256/Source/c_comm.iom b/AT91SAM7S256/Source/c_comm.iom index 2dfe994..0f6648b 100644 --- a/AT91SAM7S256/Source/c_comm.iom +++ b/AT91SAM7S256/Source/c_comm.iom @@ -38,6 +38,8 @@ enum BT_ARM_OFF, BT_ARM_CMD_MODE, BT_ARM_DATA_MODE, + BT_ARM_GPS_MODE, + BT_ARM_RAW_MODE }; //Constant reffering to BtStateStatus @@ -64,9 +66,61 @@ enum HS_INITIALISE = 1, HS_INIT_RECEIVER, HS_SEND_DATA, - HS_DISABLE + HS_DISABLE, + HS_ENABLE }; +// Constants reffering to hi-speed control syscall function +enum +{ + HS_CTRL_INIT, + HS_CTRL_UART, + HS_CTRL_EXIT +}; + +// Constants refering to HsSpeed +enum +{ + HS_BAUD_1200, + HS_BAUD_2400, + HS_BAUD_3600, + HS_BAUD_4800, + HS_BAUD_7200, + HS_BAUD_9600, + HS_BAUD_14400, + HS_BAUD_19200, + HS_BAUD_28800, + HS_BAUD_38400, + HS_BAUD_57600, + HS_BAUD_76800, + HS_BAUD_115200, + HS_BAUD_230400, + HS_BAUD_460800, + HS_BAUD_921600 +}; + +// constants referring to HsMode (number of bits) +#define HS_MODE_5_DATA 0x0000 +#define HS_MODE_6_DATA 0x0040 +#define HS_MODE_7_DATA 0x0080 +#define HS_MODE_8_DATA 0x00C0 + +// constants referring to HsMode (number of stop bits) +#define HS_MODE_10_STOP 0x0000 +#define HS_MODE_15_STOP 0x1000 +#define HS_MODE_20_STOP 0x2000 + +// constants referring to HsMode (parity) +#define HS_MODE_E_PARITY 0x0000 +#define HS_MODE_O_PARITY 0x0200 +#define HS_MODE_S_PARITY 0x0400 +#define HS_MODE_M_PARITY 0x0600 +#define HS_MODE_N_PARITY 0x0800 + +// constants referring to HsMode (D|P|S) +#define HS_MODE_8N1 (HS_MODE_8_DATA|HS_MODE_N_PARITY|HS_MODE_10_STOP) +#define HS_MODE_7E1 (HS_MODE_7_DATA|HS_MODE_E_PARITY|HS_MODE_10_STOP) + //Constants refering to DeviceStatus within DeviceTable enum { @@ -214,6 +268,11 @@ typedef struct UBYTE UsbState; + UWORD HsMode; + + UBYTE BtState; // off, cmd, data, gps, raw + UBYTE Unused1; + }IOMAPCOMM; -- cgit v1.2.3 From 565424ed7a688f910f63fc1ce82e39ebf0dfb28f Mon Sep 17 00:00:00 2001 From: John Hansen Date: Sat, 16 Oct 2010 18:12:46 +0000 Subject: NBCNXC_131 git-svn-id: https://mindboards.svn.sourceforge.net/svnroot/mindboards/lms_nbcnxc_128/trunk@21 c9361245-7fe8-9947-84e8-057757c4e366 --- AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep | 4142 ++++++++++---------- .../SAM7S256/Tools/settings/LMS_ARM.cspy.bat | 8 +- AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt | 14 +- AT91SAM7S256/Source/BtTest.inc | 1 - AT91SAM7S256/Source/cCmdWriteIOMapOffsetsFile.txt | 125 + AT91SAM7S256/Source/c_cmd.c | 194 +- AT91SAM7S256/Source/c_cmd.h | 13 +- AT91SAM7S256/Source/c_cmd.iom | 12 +- AT91SAM7S256/Source/c_cmd_drawing.inc | 2 +- AT91SAM7S256/Source/c_comm.c | 148 +- AT91SAM7S256/Source/c_comm.iom | 14 +- AT91SAM7S256/Source/c_display.c | 4 +- AT91SAM7S256/Source/c_input.c | 28 +- AT91SAM7S256/Source/c_loader.c | 5 +- AT91SAM7S256/Source/c_loader.iom | 6 +- AT91SAM7S256/Source/c_output.c | 2 +- AT91SAM7S256/Source/d_loader.c | 10 +- AT91SAM7S256/Source/d_loader.h | 6 +- AT91SAM7S256/Source/d_lowspeed.r | 44 +- AT91SAM7S256/Source/d_output.c | 366 +- 20 files changed, 2567 insertions(+), 2577 deletions(-) create mode 100644 AT91SAM7S256/Source/cCmdWriteIOMapOffsetsFile.txt (limited to 'AT91SAM7S256/Source/c_comm.iom') diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep index 1570295..5fb29bc 100644 --- a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep @@ -6,266 +6,303 @@ Benchmark + $PROJ_DIR$\Benchmark\Obj\d_usb.pbi + $PROJ_DIR$\Benchmark\Obj\d_input.r79 + $PROJ_DIR$\Benchmark\Obj\c_loader.r79 + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\Benchmark\Exe\LMS_ARM.d79 + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\Benchmark\Obj\c_lowspeed.r79 + $PROJ_DIR$\Benchmark\Obj\c_comm.pbi + $PROJ_DIR$\..\..\Source\c_button.c $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\d_display.h - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\Benchmark\Obj\d_lowspeed.r79 $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\Benchmark\Obj\c_display.pbi - $PROJ_DIR$\Benchmark\Obj\Cstartup_SAM7.r79 - $PROJ_DIR$\..\..\Source\c_button.iom - $PROJ_DIR$\Benchmark\Obj\d_display.r79 - $PROJ_DIR$\..\..\Source\d_usb.r - $PROJ_DIR$\..\..\Source\Submenu06.rms - $TOOLKIT_DIR$\inc\xtls.h - $PROJ_DIR$\..\..\Source\Wait.txt - $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $TOOLKIT_DIR$\inc\stdlib.h + $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\Submenu04.rms + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\Submenu02.rms + $PROJ_DIR$\Benchmark\Obj\c_cmd.pbi + $PROJ_DIR$\Benchmark\Obj\d_hispeed.r79 + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\Benchmark\Obj\c_sound.pbi + $PROJ_DIR$\Benchmark\Obj\c_loader.pbi + $PROJ_DIR$\Benchmark\Obj\d_hispeed.pbi + $PROJ_DIR$\Benchmark\Obj\m_sched.r79 + $PROJ_DIR$\..\..\Source\d_loader.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\Benchmark\Obj\d_ioctrl.r79 + $PROJ_DIR$\Benchmark\Obj\c_ui.pbi + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\Benchmark\Obj\d_loader.pbi $PROJ_DIR$\..\..\Source\modules.h - $PROJ_DIR$\Benchmark\Obj\d_bt.r79 - $PROJ_DIR$\..\..\Source\c_input.iom - $PROJ_DIR$\Benchmark\Obj\c_output.pbi - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt - $PROJ_DIR$\Benchmark\Obj\c_lowspeed.r79 - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\Benchmark\Obj\d_input.r79 $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\d_output.h $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\d_display.r $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\Benchmark\Exe\LMS_ARM.d79 - $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\Benchmark\Obj\c_loader.r79 - $PROJ_DIR$\Benchmark\Obj\d_usb.pbi - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\BtTest.inc - $PROJ_DIR$\Benchmark\Obj\d_timer.r79 - $TOOLKIT_DIR$\inc\DLib_Threads.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\Benchmark\Obj\c_ui.pbi - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\d_usb.r + $PROJ_DIR$\Benchmark\Obj\d_lowspeed.r79 + $PROJ_DIR$\Benchmark\Obj\d_display.r79 + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\Benchmark\Obj\c_display.pbi $PROJ_DIR$\Benchmark\Obj\d_button.pbi $TOOLKIT_DIR$\inc\xmtx.h - $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\d_display.h $PROJ_DIR$\Benchmark\Obj\Cstartup.r79 - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\c_ioctrl.h - $PROJ_DIR$\..\..\Source\stdconst.h - $PROJ_DIR$\..\Include\sam7s256.h - $TOOLKIT_DIR$\inc\string.h - $PROJ_DIR$\..\..\Source\c_ui.iom - $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\Benchmark\Obj\d_timer.r79 + $PROJ_DIR$\..\..\Source\BtTest.inc + $TOOLKIT_DIR$\inc\DLib_Threads.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Wait.txt + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xlocaleuse.h $PROJ_DIR$\..\..\Source\c_loader.h - $PROJ_DIR$\..\..\Source\d_output.h $PROJ_DIR$\Benchmark\Obj\c_button.pbi $TOOLKIT_DIR$\inc\ysizet.h - $TOOLKIT_DIR$\inc\xlocaleuse.h $PROJ_DIR$\Benchmark\Obj\m_sched.pbi - $PROJ_DIR$\..\..\Source\RCXintro_9.txt $PROJ_DIR$\Benchmark\Obj\d_lowspeed.pbi - $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\Benchmark\Obj\d_ioctrl.pbi + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h $PROJ_DIR$\Benchmark\Obj\c_ioctrl.r79 + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound.h + $TOOLKIT_DIR$\inc\yvals.h $TOOLKIT_DIR$\inc\xlocale_c.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\Benchmark\Obj\c_ioctrl.pbi + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\Benchmark\Obj\c_sound.r79 + $TOOLKIT_DIR$\inc\xtinfo.h $PROJ_DIR$\..\..\Source\c_cmd.iom $PROJ_DIR$\..\..\Source\d_hispeed.r + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\stdconst.h $PROJ_DIR$\Benchmark\Obj\c_cmd.r79 + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt $PROJ_DIR$\Benchmark\Obj\c_output.r79 + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\Include\sam7s256.h $PROJ_DIR$\Benchmark\Obj\d_bt.pbi $PROJ_DIR$\..\..\Source\Test2.txt $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\Ui.txt - $PROJ_DIR$\..\..\Source\d_sound.r - $PROJ_DIR$\..\..\Source\d_sound.h - $TOOLKIT_DIR$\inc\yvals.h - $PROJ_DIR$\..\..\Source\d_bt.r - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\Benchmark\Obj\d_ioctrl.r79 - $PROJ_DIR$\Benchmark\Obj\d_loader.pbi - $PROJ_DIR$\Benchmark\Obj\c_ioctrl.pbi - $PROJ_DIR$\Benchmark\Obj\c_sound.r79 - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\..\..\Source\d_hispeed.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\Benchmark\Obj\d_ioctrl.pbi - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $PROJ_DIR$\Benchmark\Obj\c_input.r79 - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\RCXintro_15.txt - $PROJ_DIR$\..\..\Source\c_comm.iom - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\d_usb.h - $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\d_bt.h - $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd + $PROJ_DIR$\..\..\Source\c_ui.iom $PROJ_DIR$\Benchmark\Obj\d_display.pbi $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\c_ui.h $PROJ_DIR$\..\..\Source\Ok.txt $PROJ_DIR$\Benchmark\Obj\c_display.r79 $PROJ_DIR$\Benchmark\Obj\d_input.pbi - $PROJ_DIR$\..\..\Source\RCXintro_2.txt $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\c_ui.h $PROJ_DIR$\..\..\Source\Devices.txt $PROJ_DIR$\Benchmark\Obj\c_button.r79 - $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt $PROJ_DIR$\..\..\Source\d_loader.r $PROJ_DIR$\Benchmark\Obj\c_comm.r79 $PROJ_DIR$\Benchmark\Obj\c_input.pbi - $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Submenu06.rms $PROJ_DIR$\Benchmark\Obj\c_ui.r79 $PROJ_DIR$\Benchmark\Obj\d_button.r79 - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\Benchmark\Obj\d_bt.r79 + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\Benchmark\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\Benchmark\Obj\c_lowspeed.pbi $PROJ_DIR$\Benchmark\Obj\d_output.pbi $PROJ_DIR$\..\..\Source\d_lowspeed.r - $PROJ_DIR$\..\..\Source\c_comm.h - $PROJ_DIR$\..\..\Source\Display.txt - $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\Benchmark\Obj\c_input.r79 $PROJ_DIR$\..\..\Source\c_ioctrl.iom $PROJ_DIR$\..\..\Source\Submenu07.rms $PROJ_DIR$\Benchmark\Obj\d_usb.r79 - $PROJ_DIR$\..\..\Source\RCXintro_3.txt $PROJ_DIR$\Benchmark\Obj\Cstartup_SAM7.pbi - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\Benchmark\Obj\c_comm.pbi - $PROJ_DIR$\..\..\Source\Test1.txt - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\c_loader.iom - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $PROJ_DIR$\..\..\Source\d_button.r - $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\Cursor.txt - $PROJ_DIR$\..\..\Source\c_button.h - $TOOLKIT_DIR$\inc\stdio.h - $PROJ_DIR$\..\..\Source\Running.txt - $PROJ_DIR$\..\..\Source\Info.txt - $PROJ_DIR$\Benchmark\Obj\d_loader.r79 - $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\Benchmark\Obj\c_output.pbi + $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\Benchmark\Obj\d_sound.pbi + $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_timer.h $PROJ_DIR$\..\..\Source\Status.txt $PROJ_DIR$\..\..\Source\Step.txt $PROJ_DIR$\..\..\Source\c_sound.iom $PROJ_DIR$\Benchmark\Obj\d_sound.r79 - $PROJ_DIR$\..\..\Source\RCXintro_12.txt - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h $PROJ_DIR$\..\..\Source\c_display.iom $PROJ_DIR$\Benchmark\Obj\d_output.r79 + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\Benchmark\Obj\d_loader.r79 + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\d_button.r + $PROJ_DIR$\..\..\Source\Connections.txt $PROJ_DIR$\Benchmark\Obj\d_timer.pbi - $PROJ_DIR$\..\..\Source\d_timer.r - $PROJ_DIR$\..\..\Source\Submenu04.rms - $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\..\..\Source\c_display.h - $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt - $PROJ_DIR$\..\..\Source\Submenu02.rms - $PROJ_DIR$\Benchmark\Obj\d_hispeed.r79 - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $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\c_output.h - $PROJ_DIR$\..\..\Source\c_display.c - $PROJ_DIR$\Benchmark\Obj\c_cmd.pbi - $PROJ_DIR$\Benchmark\Obj\c_sound.pbi - $PROJ_DIR$\Benchmark\Obj\c_loader.pbi - $PROJ_DIR$\Benchmark\Obj\d_hispeed.pbi - $PROJ_DIR$\Benchmark\Obj\m_sched.r79 - $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\..\..\Source\d_loader.h - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_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\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c - $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.iom - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\c_button.c - XLINK - 27 + BICOMP + 91 + + + ICCARM + 139 + + + BICOMP + 119 65 186 76 49 + + + ICCARM + 119 65 186 76 49 + + $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 68 + BICOMP + 45 - BICOMP - 176 + ICCARM + 120 - ICCARM - 50 15 66 136 17 133 53 147 8 151 92 181 26 150 143 139 76 156 117 78 183 34 58 52 90 116 + BICOMP + 119 65 116 197 165 193 130 175 76 177 179 58 72 39 172 189 107 42 63 56 85 92 121 12 181 - BICOMP - 50 15 66 136 17 133 53 147 8 151 92 181 26 150 143 139 76 156 78 183 34 58 52 90 116 + ICCARM + 119 65 116 197 165 193 130 175 76 177 179 58 72 39 172 189 107 42 182 63 56 85 92 121 12 181 - $PROJ_DIR$\..\..\Source\c_comm.c + [ROOT_NODE] - ICCARM - 111 + XLINK + 5 + + + + $PROJ_DIR$\..\..\Source\c_comm.c + BICOMP - 130 + 8 - - ICCARM - 50 15 92 133 124 53 66 151 121 95 84 97 52 76 156 117 78 183 34 58 2 105 12 41 90 59 65 83 24 19 + 142 + + BICOMP - 50 15 92 133 124 53 66 151 121 95 84 97 52 76 156 78 183 34 58 2 105 12 41 90 59 65 83 24 19 + 119 65 179 193 161 130 116 177 180 152 113 171 121 107 42 63 56 85 92 82 137 88 79 12 89 108 115 66 125 + + + ICCARM + 119 65 179 193 161 130 116 177 180 152 113 171 121 107 42 182 63 56 85 92 82 137 88 79 12 89 108 115 66 125 - $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd + $PROJ_DIR$\..\..\Source\c_display.c + + + BICOMP + 77 + + + ICCARM + 135 + + - BILINK - 128 57 176 130 6 112 81 178 118 18 177 36 70 40 99 179 103 86 80 62 119 144 153 30 60 + BICOMP + 121 107 42 63 56 85 92 119 65 177 40 80 + + + ICCARM + 121 107 42 182 63 56 85 92 119 65 177 40 80 @@ -273,22 +310,22 @@ $PROJ_DIR$\..\..\Source\c_input.c - ICCARM - 89 + BICOMP + 143 - BICOMP - 112 + ICCARM + 160 - ICCARM - 50 15 93 17 28 136 + BICOMP + 119 65 153 165 4 197 - BICOMP - 50 15 93 17 28 136 + ICCARM + 119 65 153 165 4 197 @@ -296,22 +333,22 @@ $PROJ_DIR$\..\..\Source\c_ioctrl.c - ICCARM - 64 + BICOMP + 112 - BICOMP - 81 + ICCARM + 103 - ICCARM - 50 15 124 49 162 + BICOMP + 119 65 161 122 47 - BICOMP - 50 15 124 49 162 + ICCARM + 119 65 161 122 47 @@ -319,22 +356,22 @@ $PROJ_DIR$\..\..\Source\c_loader.c - ICCARM - 29 + BICOMP + 52 - BICOMP - 178 + ICCARM + 2 - ICCARM - 50 15 133 124 182 55 + BICOMP + 119 65 193 161 55 90 - BICOMP - 50 15 133 124 182 55 + ICCARM + 119 65 193 161 55 90 @@ -342,22 +379,22 @@ $PROJ_DIR$\..\..\Source\c_lowspeed.c - ICCARM - 21 + BICOMP + 157 - BICOMP - 118 + ICCARM + 7 - ICCARM - 50 15 181 17 158 54 + BICOMP + 119 65 58 165 43 101 - BICOMP - 50 15 181 17 158 54 + ICCARM + 119 65 58 165 43 101 @@ -365,22 +402,22 @@ $PROJ_DIR$\..\..\Source\c_output.c - ICCARM - 69 + BICOMP + 167 - BICOMP - 18 + ICCARM + 124 - ICCARM - 139 76 156 117 78 183 34 58 47 50 15 136 174 56 151 + BICOMP + 189 107 42 63 56 85 92 102 119 65 197 50 68 177 - BICOMP - 139 76 156 78 183 34 58 47 50 15 136 174 56 151 + ICCARM + 189 107 42 182 63 56 85 92 102 119 65 197 50 68 177 @@ -388,22 +425,22 @@ $PROJ_DIR$\..\..\Source\c_sound.c - ICCARM - 82 + BICOMP + 51 - BICOMP - 177 + ICCARM + 114 - ICCARM - 90 76 156 117 78 183 34 58 52 50 15 147 133 123 75 + BICOMP + 12 107 42 63 56 85 92 121 119 65 175 193 149 106 - BICOMP - 90 76 156 78 183 34 58 52 50 15 147 133 123 75 + ICCARM + 12 107 42 182 63 56 85 92 121 119 65 175 193 149 106 @@ -411,22 +448,22 @@ $PROJ_DIR$\..\..\Source\c_ui.c - ICCARM - 114 + BICOMP + 60 - BICOMP - 36 + ICCARM + 146 - ICCARM - 139 76 156 117 78 183 34 58 52 2 105 12 41 90 59 65 83 24 19 50 15 53 106 31 51 88 151 133 8 147 17 136 124 66 92 181 122 37 3 146 137 140 197 101 13 85 141 38 46 104 127 63 14 44 159 22 61 109 20 149 132 113 91 134 145 107 129 73 96 100 160 155 35 11 125 195 32 131 71 + BICOMP + 189 107 42 63 56 85 92 121 82 137 88 79 12 89 108 115 66 125 119 65 130 133 155 126 100 177 193 76 175 165 197 161 116 179 58 183 67 151 174 184 188 57 134 87 95 190 61 111 140 3 118 168 109 48 70 97 144 123 38 185 166 156 187 173 138 195 104 6 132 44 41 86 145 162 35 84 192 128 - BICOMP - 139 76 156 78 183 34 58 52 2 105 12 41 90 59 65 83 24 19 50 15 53 106 31 51 88 151 133 8 147 17 136 124 66 92 181 122 37 3 146 137 140 197 101 13 85 141 38 46 104 127 63 14 44 159 22 61 109 20 149 132 113 91 134 145 107 129 73 96 100 160 155 35 11 125 195 32 131 71 + ICCARM + 189 107 42 182 63 56 85 92 121 82 137 88 79 12 89 108 115 66 125 119 65 130 133 155 126 100 177 193 76 175 165 197 161 116 179 58 183 67 151 174 184 188 57 134 87 95 190 61 111 140 3 118 168 109 48 70 97 144 123 38 185 166 156 187 173 138 195 104 6 132 44 41 86 145 162 35 84 192 128 @@ -435,13 +472,13 @@ AARM - 43 + 81 AARM - 72 + 129 @@ -449,22 +486,22 @@ $PROJ_DIR$\..\Include\Cstartup_SAM7.c - ICCARM - 7 + BICOMP + 164 - BICOMP - 128 + ICCARM + 150 - ICCARM - 48 + BICOMP + 98 - BICOMP - 48 + ICCARM + 98 @@ -472,22 +509,22 @@ $PROJ_DIR$\..\..\Source\d_bt.c - ICCARM - 16 + BICOMP + 127 - BICOMP - 70 + ICCARM + 148 - ICCARM - 50 15 31 51 88 97 77 52 76 156 117 78 183 34 58 + BICOMP + 119 65 155 126 100 171 62 121 107 42 63 56 85 92 - BICOMP - 50 15 31 51 88 97 77 52 76 156 78 183 34 58 + ICCARM + 119 65 155 126 100 171 62 121 107 42 182 63 56 85 92 @@ -495,160 +532,114 @@ $PROJ_DIR$\..\..\Source\d_button.c - ICCARM - 115 + BICOMP + 78 - BICOMP - 40 + ICCARM + 147 - ICCARM - 50 31 51 88 39 135 + BICOMP + 119 155 126 100 49 194 - BICOMP - 50 31 51 88 39 135 + ICCARM + 119 155 126 100 49 194 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_display.c - ICCARM - 102 + BICOMP + 131 - BICOMP - 6 + ICCARM + 75 - ICCARM - 52 76 156 117 78 183 34 58 50 15 151 157 1 + BICOMP + 119 155 126 100 121 107 42 63 56 85 92 80 71 - BICOMP - 52 76 156 78 183 34 58 50 15 151 157 1 + ICCARM + 119 155 126 100 80 71 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - ICCARM - 108 + BICOMP + 53 - BICOMP - 57 + ICCARM + 46 - ICCARM - 50 15 138 8 39 + BICOMP + 119 155 126 100 113 117 - BICOMP - 50 15 138 8 39 + ICCARM + 119 155 126 100 113 117 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 9 + BICOMP + 136 - BICOMP - 99 + ICCARM + 1 - ICCARM - 50 31 51 88 1 42 + BICOMP + 119 155 126 100 153 165 4 154 - BICOMP - 50 31 51 88 52 76 156 78 183 34 58 1 42 + ICCARM + 119 155 126 100 153 165 4 154 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - - ICCARM - 161 - - - BICOMP - 179 - - - - - ICCARM - 50 31 51 88 84 67 - BICOMP - 50 31 51 88 84 67 + 96 - - - - $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 23 - - - BICOMP - 103 + 59 - - ICCARM - 50 31 51 88 93 17 28 94 - - - BICOMP - 50 31 51 88 93 17 28 94 - - - - - $PROJ_DIR$\..\..\Source\d_ioctrl.c - - - ICCARM - 79 - BICOMP - 86 + 121 107 42 63 56 85 92 119 155 126 100 47 69 - - ICCARM - 52 76 156 117 78 183 34 58 50 31 51 88 162 25 - - - BICOMP - 52 76 156 78 183 34 58 50 31 51 88 162 25 + 121 107 42 182 63 56 85 92 119 155 126 100 47 69 @@ -656,22 +647,22 @@ $PROJ_DIR$\..\..\Source\d_loader.c - ICCARM - 142 + BICOMP + 64 - BICOMP - 80 + ICCARM + 191 - ICCARM - 50 15 31 51 88 182 110 52 76 156 117 78 183 34 58 2 105 12 41 90 59 65 83 24 19 + BICOMP + 119 65 155 126 100 55 141 121 107 42 63 56 85 92 82 137 88 79 12 89 108 115 66 125 - BICOMP - 50 15 31 51 88 182 110 52 76 156 78 183 34 58 2 105 12 41 90 59 65 83 24 19 + ICCARM + 119 65 155 126 100 55 141 121 107 42 182 63 56 85 92 82 137 88 79 12 89 108 115 66 125 @@ -679,22 +670,22 @@ $PROJ_DIR$\..\..\Source\d_lowspeed.c - ICCARM - 4 + BICOMP + 94 - BICOMP - 62 + ICCARM + 74 - ICCARM - 50 31 51 88 54 120 + BICOMP + 119 155 126 100 101 159 - BICOMP - 50 31 51 88 54 120 + ICCARM + 119 155 126 100 101 159 @@ -702,22 +693,22 @@ $PROJ_DIR$\..\..\Source\d_output.c - ICCARM - 152 + BICOMP + 158 - BICOMP - 119 + ICCARM + 178 - ICCARM - 50 31 51 88 56 87 + BICOMP + 119 155 126 100 68 99 - BICOMP - 50 31 51 88 56 87 + ICCARM + 119 155 126 100 68 99 @@ -725,22 +716,22 @@ $PROJ_DIR$\..\..\Source\d_sound.c - ICCARM - 148 + BICOMP + 169 - BICOMP - 144 + ICCARM + 176 - ICCARM - 50 31 51 88 75 74 + BICOMP + 119 155 126 100 106 105 - BICOMP - 50 31 51 88 75 74 + ICCARM + 119 155 126 100 106 105 @@ -748,22 +739,22 @@ $PROJ_DIR$\..\..\Source\d_timer.c - ICCARM - 33 + BICOMP + 196 - BICOMP - 153 + ICCARM + 83 - ICCARM - 50 31 51 88 143 154 + BICOMP + 119 155 126 100 172 37 - BICOMP - 50 31 51 88 143 154 + ICCARM + 119 155 126 100 172 37 @@ -771,22 +762,22 @@ $PROJ_DIR$\..\..\Source\d_usb.c - ICCARM - 126 + BICOMP + 0 - BICOMP - 30 + ICCARM + 163 - ICCARM - 50 31 51 88 95 10 + BICOMP + 119 155 126 100 152 73 - BICOMP - 50 31 51 88 95 10 + ICCARM + 119 155 126 100 152 73 @@ -794,22 +785,31 @@ $PROJ_DIR$\..\..\Source\m_sched.c - ICCARM - 180 + BICOMP + 93 - BICOMP - 60 + ICCARM + 54 + + BICOMP + 119 65 155 126 100 110 180 153 165 186 76 90 149 40 43 50 72 39 116 122 133 + ICCARM - 50 15 31 51 88 45 121 93 17 138 8 55 123 157 158 174 26 150 66 49 106 + 119 65 155 126 100 110 180 153 165 186 76 90 149 40 43 50 72 39 116 122 133 + + + + $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd + - BICOMP - 50 15 31 51 88 45 121 93 17 138 8 55 123 157 158 174 26 150 66 49 106 + BILINK + 164 91 45 8 77 143 112 52 157 167 51 60 127 78 131 53 136 96 64 94 158 169 196 0 93 @@ -824,126 +824,21 @@ Bin Output - $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\d_display.h - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\..\Source\c_button.iom - $PROJ_DIR$\..\..\Source\d_usb.r - $PROJ_DIR$\..\..\Source\Submenu06.rms - $TOOLKIT_DIR$\inc\xtls.h - $PROJ_DIR$\..\..\Source\Wait.txt - $PROJ_DIR$\..\..\Source\RCXintro_5.txt - $PROJ_DIR$\..\..\Source\modules.h - $PROJ_DIR$\..\..\Source\c_input.iom - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\RCXintro_3.txt $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\BtTest.inc - $TOOLKIT_DIR$\inc\DLib_Threads.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_button.h - $TOOLKIT_DIR$\inc\xmtx.h - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\c_ioctrl.h - $PROJ_DIR$\..\..\Source\stdconst.h - $PROJ_DIR$\..\Include\sam7s256.h - $TOOLKIT_DIR$\inc\string.h - $PROJ_DIR$\..\..\Source\c_ui.iom - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $PROJ_DIR$\..\..\Source\c_loader.h - $PROJ_DIR$\..\..\Source\d_output.h - $TOOLKIT_DIR$\inc\ysizet.h - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\RCXintro_9.txt - $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $TOOLKIT_DIR$\inc\xlocale_c.h - $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\d_hispeed.r - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\Ui.txt - $PROJ_DIR$\..\..\Source\d_sound.r - $PROJ_DIR$\..\..\Source\d_sound.h - $TOOLKIT_DIR$\inc\yvals.h - $PROJ_DIR$\..\..\Source\d_bt.r - $TOOLKIT_DIR$\inc\DLib_Product.h - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\..\..\Source\d_hispeed.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\RCXintro_15.txt - $PROJ_DIR$\..\..\Source\c_comm.iom - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\d_usb.h $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\d_bt.h - $PROJ_DIR$\..\..\Source\Submenu01.rms - $PROJ_DIR$\..\..\Source\Ok.txt - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\..\..\Source\d_loader.r - $PROJ_DIR$\..\..\Source\RCXintro_14.txt - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\Lib\dl4tptinl8n.h - $PROJ_DIR$\..\..\Source\d_lowspeed.r - $PROJ_DIR$\..\..\Source\c_comm.h - $PROJ_DIR$\..\..\Source\Display.txt - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\c_ioctrl.iom - $PROJ_DIR$\..\..\Source\Submenu07.rms - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\..\..\Source\Test1.txt - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\c_loader.iom - $PROJ_DIR$\..\Object\c_lowspeed.pbi - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $PROJ_DIR$\..\Object\d_output.r79 - $PROJ_DIR$\..\Object\d_display.r79 - $PROJ_DIR$\..\Object\d_led.r79 - $PROJ_DIR$\..\Object\d_usb.s - $PROJ_DIR$\..\Object\c_cmd.pbi - $PROJ_DIR$\..\Object\c_lowspeed.r79 - $PROJ_DIR$\..\Object\d_timer.s - $PROJ_DIR$\..\Object\d_ioctrl.s - $PROJ_DIR$\..\Object\m_sched.r79 - $PROJ_DIR$\..\Object\d_loader.s - $PROJ_DIR$\..\Object\d_button.pbi - $PROJ_DIR$\..\Object\c_cmd.s - $PROJ_DIR$\..\Object\c_loader.s - $PROJ_DIR$\..\Object\d_output.s - $PROJ_DIR$\..\Object\d_input.r79 - $PROJ_DIR$\..\Object\d_usb.pbi - $PROJ_DIR$\..\Object\d_hispeed.s - $PROJ_DIR$\..\Object\c_input.s - $PROJ_DIR$\..\Object\Cstartup_SAM7.s - $PROJ_DIR$\..\Object\c_button.r79 - $PROJ_DIR$\..\Object\LMS_ARM.map - $PROJ_DIR$\..\Object\c_comm.s + $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\..\Source\d_led.r + $PROJ_DIR$\..\Object\d_bt.r79 + $PROJ_DIR$\..\Object\d_button.s + $PROJ_DIR$\..\Object\c_led.r79 + $PROJ_DIR$\..\Object\d_input.pbi $PROJ_DIR$\..\Object\d_sound.pbi $PROJ_DIR$\..\Object\d_sound.s $PROJ_DIR$\..\Object\c_input.r79 $PROJ_DIR$\..\Object\d_ioctrl.pbi + $PROJ_DIR$\..\Object\d_display.r79 $PROJ_DIR$\..\Object\LMS_ARM.a79 $PROJ_DIR$\..\Object\c_output.r79 $PROJ_DIR$\..\Object\c_sound.r79 @@ -954,45 +849,55 @@ $PROJ_DIR$\..\Object\d_loader.r79 $PROJ_DIR$\..\Object\c_ui.s $PROJ_DIR$\..\Object\m_sched.s - $TOOLKIT_DIR$\inc\ymath.h $PROJ_DIR$\..\Object\c_button.s - $PROJ_DIR$\..\..\Source\d_led.c - $PROJ_DIR$\..\Object\c_input.pbi - $PROJ_DIR$\..\Object\c_sound.s - $PROJ_DIR$\..\..\Source\d_led.r - $PROJ_DIR$\..\..\Source\c_led.h - $PROJ_DIR$\..\..\Source\Submenu03.rms - $PROJ_DIR$\at91SAM7S256_Remap.xcl - $PROJ_DIR$\..\Object\c_lowspeed.s - $PROJ_DIR$\..\Object\c_display.s - $PROJ_DIR$\..\Object\c_sound.pbi - $PROJ_DIR$\..\Object\d_bt.pbi - $PROJ_DIR$\..\..\Source\d_sound_adpcm.r - $PROJ_DIR$\..\Object\d_lowspeed.s - $PROJ_DIR$\..\Object\c_cmd.r79 - $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\..\Source\c_comm.c + $TOOLKIT_DIR$\inc\stdlib.h + $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c $PROJ_DIR$\..\Object\c_ioctrl.r79 $PROJ_DIR$\..\Object\d_loader.pbi $PROJ_DIR$\..\Object\c_loader.r79 $PROJ_DIR$\..\Object\c_ioctrl.s $PROJ_DIR$\..\Object\LMS_ARM.pbd - $PROJ_DIR$\..\Object\d_display.pbi + $PROJ_DIR$\..\..\Source\c_led.iom $PROJ_DIR$\..\Object\LMS_ARM.d79 - $TOOLKIT_DIR$\inc\limits.h - $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\Object\d_lowspeed.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi $PROJ_DIR$\..\Object\c_button.pbi $PROJ_DIR$\..\Object\d_sound.r79 $PROJ_DIR$\..\Object\c_comm.r79 - $PROJ_DIR$\..\..\Source\c_led.iom - $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $PROJ_DIR$\..\Object\d_lowspeed.pbi + $PROJ_DIR$\..\Object\d_hispeed.pbi $PROJ_DIR$\..\Object\c_output.s - $PROJ_DIR$\..\Object\d_lowspeed.r79 $PROJ_DIR$\..\Object\d_timer.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.s $PROJ_DIR$\..\Object\c_ioctrl.pbi $PROJ_DIR$\..\Object\d_ioctrl.r79 $PROJ_DIR$\..\Object\m_sched.pbi $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 - $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $TOOLKIT_DIR$\inc\math.h $PROJ_DIR$\..\Object\d_timer.pbi $PROJ_DIR$\..\Object\c_output.pbi $PROJ_DIR$\..\Object\d_bt.s @@ -1002,1139 +907,1131 @@ $PROJ_DIR$\..\Object\c_ui.pbi $PROJ_DIR$\..\Object\c_ui.r79 $PROJ_DIR$\..\Object\d_button.r79 - $PROJ_DIR$\..\Object\d_lowspeed.pbi - $PROJ_DIR$\..\Object\d_hispeed.pbi - $TOOLKIT_DIR$\inc\math.h $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\Object\d_bt.r79 - $PROJ_DIR$\..\Object\d_button.s - $PROJ_DIR$\..\Object\c_led.r79 - $PROJ_DIR$\..\Object\d_input.pbi - $PROJ_DIR$\..\..\Source\d_button.r - $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\Cursor.txt - $PROJ_DIR$\..\..\Source\c_button.h - $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\Object\d_led.r79 $PROJ_DIR$\..\..\Source\c_led.c - $PROJ_DIR$\..\..\Source\Running.txt - $PROJ_DIR$\..\..\Source\Info.txt - $PROJ_DIR$\..\..\Source\d_timer.h - $PROJ_DIR$\..\..\Source\Status.txt - $PROJ_DIR$\..\..\Source\Step.txt - $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\Object\c_sound.s + $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\Object\c_lowspeed.s + $PROJ_DIR$\..\Object\c_display.s + $PROJ_DIR$\..\Object\c_sound.pbi + $PROJ_DIR$\..\Object\d_bt.pbi + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + $PROJ_DIR$\..\Object\d_lowspeed.s + $PROJ_DIR$\..\Object\c_cmd.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\d_ioctrl.s + $PROJ_DIR$\..\Object\d_output.r79 + $PROJ_DIR$\..\Object\d_usb.s + $PROJ_DIR$\..\Object\c_cmd.pbi + $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\Object\m_sched.r79 + $PROJ_DIR$\..\Object\d_loader.s + $PROJ_DIR$\..\Object\d_button.pbi + $PROJ_DIR$\..\Object\c_cmd.s + $PROJ_DIR$\..\Object\c_loader.s + $PROJ_DIR$\..\Object\d_output.s + $PROJ_DIR$\..\Object\d_input.r79 + $PROJ_DIR$\..\Object\d_usb.pbi + $PROJ_DIR$\..\Object\d_hispeed.s + $PROJ_DIR$\..\Object\c_input.s + $PROJ_DIR$\..\Object\d_display.pbi + $PROJ_DIR$\..\Object\c_button.r79 + $PROJ_DIR$\..\Object\LMS_ARM.map + $PROJ_DIR$\..\Object\c_comm.s + $PROJ_DIR$\..\Object\d_timer.s + $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\Object\c_input.pbi + $PROJ_DIR$\..\..\Source\d_timer.r $PROJ_DIR$\..\..\Source\RCXintro_12.txt $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\..\..\Source\c_display.iom - $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\..\Source\Submenu04.rms $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\Submenu02.rms $PROJ_DIR$\..\..\Source\d_ioctrl.h - $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\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\d_button.h $PROJ_DIR$\..\..\Source\c_output.h - $PROJ_DIR$\..\..\Source\c_display.c - $PROJ_DIR$\..\..\Source\c_lowspeed.iom $PROJ_DIR$\..\..\Source\d_loader.h $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\Object\c_display.r79 - $PROJ_DIR$\..\..\Source\c_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\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\modules.h + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_usb.r + $PROJ_DIR$\..\..\Source\c_button.iom + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_display.h + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\BtTest.inc + $TOOLKIT_DIR$\inc\DLib_Threads.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Wait.txt + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\c_loader.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\d_hispeed.h + $TOOLKIT_DIR$\inc\xtinfo.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.r + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\stdconst.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\Ok.txt + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_timer.h + $TOOLKIT_DIR$\inc\ymath.h + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\Object\c_lowspeed.pbi + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\d_button.r + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_output.iom - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\c_button.c - XLINK - 153 114 120 + BICOMP + 61 - - - - $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 145 - - - BICOMP - 98 + 118 - ICCARM - 35 11 47 187 12 91 38 197 5 200 64 222 20 36 61 18 199 194 190 54 203 80 56 224 22 42 37 62 180 130 154 79 + BICOMP + 184 143 230 152 134 - BICOMP - 35 11 47 187 12 91 38 197 5 200 64 222 20 36 61 18 199 194 190 54 203 56 224 22 42 37 62 180 130 154 79 + ICCARM + 184 143 230 152 134 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 158 + BICOMP + 105 - BICOMP - 126 + ICCARM + 99 - ICCARM - 35 11 64 91 85 38 47 200 82 67 58 69 37 54 203 80 56 224 22 42 2 73 8 27 62 43 46 57 16 13 + BICOMP + 184 143 181 239 212 236 192 220 152 221 223 139 207 189 168 150 126 216 233 174 129 142 137 157 163 185 27 73 217 122 225 - BICOMP - 35 11 64 91 85 38 47 200 82 67 58 69 37 54 203 56 224 22 42 2 73 8 27 62 43 46 57 16 13 + ICCARM + 184 143 181 239 212 236 192 220 152 221 223 139 207 189 168 150 126 216 233 174 129 226 142 137 157 163 185 27 73 217 122 225 - $PROJ_DIR$\..\Object\d_usb.s + [ROOT_NODE] - AARM - 172 + XLINK + 58 119 15 - $PROJ_DIR$\..\Object\d_timer.s + $PROJ_DIR$\..\Object\d_button.s AARM - 163 + 82 - $PROJ_DIR$\..\Object\d_ioctrl.s + $PROJ_DIR$\..\Object\d_sound.s AARM - 165 + 62 - $PROJ_DIR$\..\Object\d_loader.s + $PROJ_DIR$\..\Object\d_display.s AARM - 127 + 14 - $PROJ_DIR$\..\Object\c_cmd.s + $PROJ_DIR$\..\Object\c_ui.s AARM - 145 + 81 - $PROJ_DIR$\..\Object\c_loader.s + $PROJ_DIR$\..\Object\m_sched.s AARM - 149 + 107 - $PROJ_DIR$\..\Object\d_output.s + $PROJ_DIR$\..\Object\c_button.s AARM - 94 + 118 - $PROJ_DIR$\..\Object\d_hispeed.s + $PROJ_DIR$\..\..\Source\c_comm.c - AARM - 155 + BICOMP + 21 - - - - $PROJ_DIR$\..\Object\c_input.s - - AARM - 118 + ICCARM + 63 - - - $PROJ_DIR$\..\Object\Cstartup_SAM7.s - + - AARM - 160 + BICOMP + 184 143 223 236 210 192 181 221 224 204 179 215 185 174 129 142 137 157 163 155 196 160 153 27 161 175 180 144 188 - - - - $PROJ_DIR$\..\Object\c_comm.s - - AARM - 158 + ICCARM + 184 143 223 236 210 192 181 221 224 204 179 215 185 174 129 226 142 137 157 163 155 196 160 153 27 161 175 180 144 188 - + - $PROJ_DIR$\..\Object\d_sound.s + $PROJ_DIR$\..\..\Source\c_display.c - AARM - 157 + BICOMP + 106 - - - - $PROJ_DIR$\..\Object\d_display.s - - AARM - 95 + ICCARM + 87 - - - $PROJ_DIR$\..\Object\c_ui.s - + - AARM - 176 + BICOMP + 185 174 129 142 137 157 163 184 143 221 127 154 - - - - $PROJ_DIR$\..\Object\m_sched.s - - AARM - 102 + ICCARM + 185 174 129 226 142 137 157 163 184 143 221 127 154 - + - $PROJ_DIR$\..\Object\c_button.s + $PROJ_DIR$\..\..\Source\c_input.c - AARM - 113 + BICOMP + 123 - - - - $PROJ_DIR$\..\..\Source\d_led.c - ICCARM - 96 + 12 + + BICOMP + 184 143 205 212 1 239 236 185 174 129 142 137 157 163 + ICCARM - 35 20 36 61 181 135 + 184 143 205 212 1 239 236 185 174 129 226 142 137 157 163 - $PROJ_DIR$\..\Object\c_sound.s + $PROJ_DIR$\..\..\Source\c_ioctrl.c - AARM - 122 + BICOMP + 69 - - - - $PROJ_DIR$\..\Object\c_lowspeed.s - - AARM - 99 + ICCARM + 52 - - - $PROJ_DIR$\..\Object\c_display.s - + - AARM - 225 + BICOMP + 184 143 210 186 132 - - - - $PROJ_DIR$\..\Object\d_lowspeed.s - - AARM - 162 + ICCARM + 184 143 210 186 132 - + - $PROJ_DIR$\..\Object\c_ioctrl.s + $PROJ_DIR$\..\..\Source\c_loader.c - AARM - 147 + BICOMP + 20 + + + ICCARM + 54 - - - $PROJ_DIR$\..\Object\LMS_ARM.pbd - BILINK - 168 156 98 126 146 133 164 125 92 170 141 175 142 104 152 179 185 119 148 178 124 116 169 109 166 + BICOMP + 184 143 236 210 136 162 185 174 129 142 137 157 163 + + + ICCARM + 184 143 236 210 136 162 185 174 129 226 142 137 157 163 - $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\..\Source\c_lowspeed.c - XLINK - 114 120 + BICOMP + 222 + + + ICCARM + 101 - XLINK - 138 173 160 113 145 158 225 118 147 149 99 121 122 176 182 177 95 155 108 165 127 162 94 157 163 172 102 167 + BICOMP + 184 143 139 212 130 169 + + + ICCARM + 184 143 139 212 130 169 - $PROJ_DIR$\..\Object\c_output.s + $PROJ_DIR$\..\..\Source\c_output.c - AARM - 121 + BICOMP + 75 - - - - $PROJ_DIR$\..\Object\d_bt.s - - AARM - 182 + ICCARM + 16 - - - $PROJ_DIR$\..\Object\d_input.s - + - AARM - 108 + BICOMP + 233 174 129 142 137 157 163 170 184 143 239 135 146 221 - - - - $PROJ_DIR$\..\Object\d_button.s - - AARM - 177 + ICCARM + 233 174 129 226 142 137 157 163 170 184 143 239 135 146 221 - + - $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\..\Source\c_sound.c + + BICOMP + 95 + ICCARM - 184 + 17 + + BICOMP + 27 174 129 142 137 157 163 185 184 143 220 236 202 173 + ICCARM - 35 11 159 136 181 + 27 174 129 226 142 137 157 163 185 184 143 220 236 202 173 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\c_ui.c - ICCARM - 118 + BICOMP + 80 - BICOMP - 133 + ICCARM + 81 - ICCARM - 35 11 65 12 19 187 91 37 54 203 80 56 224 22 42 + BICOMP + 233 174 129 142 137 157 163 185 155 196 160 153 27 161 175 180 144 188 184 143 192 194 207 189 168 221 236 152 220 212 239 210 181 223 139 227 145 203 219 228 232 138 195 159 164 234 140 178 198 0 183 214 176 133 148 165 200 187 125 229 213 208 231 218 197 238 171 2 193 131 91 128 158 201 211 50 156 235 190 - BICOMP - 35 11 65 12 19 187 91 37 54 203 56 224 22 42 + ICCARM + 233 174 129 226 142 137 157 163 185 155 196 160 153 27 161 175 180 144 188 184 143 192 194 207 189 168 221 236 152 220 212 239 210 181 223 139 227 145 203 219 228 232 138 195 159 164 234 140 178 198 0 183 214 176 133 148 165 200 187 125 229 213 208 231 218 197 238 171 2 193 131 91 128 158 201 211 50 156 235 190 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\Include\Cstartup.s79 - ICCARM - 147 - - - BICOMP - 164 + AARM + 78 - ICCARM - 35 11 85 34 208 - - - BICOMP - 35 11 85 34 208 + AARM + 191 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - ICCARM - 149 + BICOMP + 60 - BICOMP - 125 + ICCARM + 100 - ICCARM - 35 11 91 85 223 40 37 54 203 80 56 224 22 42 + BICOMP + 166 - BICOMP - 35 11 91 85 223 40 37 54 203 56 224 22 42 + ICCARM + 166 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_bt.c - ICCARM - 99 + BICOMP + 96 - BICOMP - 92 + ICCARM + 6 - ICCARM - 35 11 222 12 205 39 + BICOMP + 184 143 207 189 168 215 141 185 174 129 142 137 157 163 - BICOMP - 35 11 222 12 205 39 + ICCARM + 184 143 207 189 168 215 141 185 174 129 226 142 137 157 163 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_button.c - ICCARM - 121 + BICOMP + 109 - BICOMP - 170 + ICCARM + 82 - ICCARM - 190 54 203 80 56 224 22 42 32 35 11 187 220 41 200 + BICOMP + 184 207 189 168 134 237 - BICOMP - 190 54 203 56 224 22 42 32 35 11 187 220 41 200 + ICCARM + 184 207 189 168 134 237 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\d_display.c - ICCARM - 122 + BICOMP + 117 - BICOMP - 141 + ICCARM + 14 - ICCARM - 62 54 203 80 56 224 22 42 37 35 11 197 91 84 53 + BICOMP + 184 207 189 168 154 149 - BICOMP - 62 54 203 56 224 22 42 37 35 11 197 91 84 53 + ICCARM + 184 207 189 168 154 149 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - - ICCARM - 176 - BICOMP - 175 + 65 - - ICCARM - 190 54 203 80 56 224 22 42 37 2 73 8 27 62 43 46 57 16 13 35 11 38 74 20 36 61 200 91 5 197 12 187 85 47 64 222 83 24 3 196 188 192 239 71 9 59 193 25 31 72 87 45 10 29 206 15 44 76 14 198 90 78 63 93 195 75 88 51 68 70 207 137 202 23 7 86 237 21 89 49 + 90 + + BICOMP - 190 54 203 56 224 22 42 37 2 73 8 27 62 43 46 57 16 13 35 11 38 74 20 36 61 200 91 5 197 12 187 85 47 64 222 83 24 3 196 188 192 239 71 9 59 193 25 31 72 87 45 10 29 206 15 44 76 14 198 90 78 63 93 195 75 88 51 68 70 207 137 202 23 7 86 237 21 89 49 - - - - - $PROJ_DIR$\..\Include\Cstartup.s79 - - - AARM - 173 + 184 207 189 168 179 182 - - - AARM - 50 + ICCARM + 184 207 189 168 179 182 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 160 + BICOMP + 9 - BICOMP - 168 + ICCARM + 113 - ICCARM - 33 + BICOMP + 184 207 189 168 205 212 1 206 - BICOMP - 33 + ICCARM + 184 207 189 168 205 212 1 206 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - ICCARM - 182 + BICOMP + 13 - BICOMP - 142 + ICCARM + 70 - ICCARM - 35 11 20 36 61 69 55 37 54 203 80 56 224 22 42 + BICOMP + 185 174 129 142 137 157 163 184 207 189 168 132 147 - BICOMP - 35 11 20 36 61 69 55 37 54 203 56 224 22 42 + ICCARM + 185 174 129 226 142 137 157 163 184 207 189 168 132 147 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_loader.c - ICCARM - 177 + BICOMP + 53 - BICOMP - 104 + ICCARM + 22 - ICCARM - 35 20 36 61 26 186 + BICOMP + 184 143 207 189 168 136 199 185 174 129 142 137 157 163 155 196 160 153 27 161 175 180 144 188 - BICOMP - 35 20 36 61 26 186 + ICCARM + 184 143 207 189 168 136 199 185 174 129 226 142 137 157 163 155 196 160 153 27 161 175 180 144 188 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - ICCARM - 225 + BICOMP + 64 - BICOMP - 146 + ICCARM + 59 - ICCARM - 37 54 203 80 56 224 22 42 35 11 200 204 1 + BICOMP + 184 207 189 168 169 209 - BICOMP - 37 54 203 56 224 22 42 35 11 200 204 1 + ICCARM + 184 207 189 168 169 209 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\d_output.c - ICCARM - 113 + BICOMP + 19 - BICOMP - 156 + ICCARM + 103 - ICCARM - 35 11 189 5 26 + BICOMP + 184 207 189 168 146 167 - BICOMP - 35 11 189 5 26 + ICCARM + 184 207 189 168 146 167 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_sound.c - ICCARM - 95 + BICOMP + 10 - BICOMP - 152 + ICCARM + 62 - ICCARM - 35 20 36 61 1 28 + BICOMP + 184 207 189 168 173 172 97 - BICOMP - 35 20 36 61 1 28 + ICCARM + 184 207 189 168 173 172 97 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\d_timer.c - ICCARM - 155 + BICOMP + 74 - BICOMP - 179 + ICCARM + 67 - ICCARM - 35 20 36 61 58 48 + BICOMP + 184 207 189 168 216 124 - BICOMP - 35 20 36 61 58 48 + ICCARM + 184 207 189 168 216 124 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\d_usb.c - ICCARM - 108 + BICOMP + 114 - BICOMP - 185 + ICCARM + 77 - ICCARM - 35 20 36 61 65 12 19 66 + BICOMP + 184 207 189 168 204 151 - BICOMP - 35 20 36 61 65 12 19 66 + ICCARM + 184 207 189 168 204 151 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\m_sched.c - ICCARM - 165 + BICOMP + 71 - BICOMP - 119 + ICCARM + 107 - ICCARM - 37 54 203 80 56 224 22 42 35 20 36 61 208 17 + BICOMP + 184 143 207 189 168 177 224 205 212 230 152 162 202 127 130 135 150 126 181 186 194 - BICOMP - 37 54 203 56 224 22 42 35 20 36 61 208 17 + ICCARM + 184 143 207 189 168 177 224 205 212 230 152 162 202 127 130 135 150 126 181 186 194 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\Object\c_ioctrl.s - ICCARM - 127 - - - BICOMP - 148 + AARM + 52 + + + $PROJ_DIR$\..\Object\LMS_ARM.pbd - ICCARM - 35 11 20 36 61 223 77 37 54 203 80 56 224 22 42 2 73 8 27 62 43 46 57 16 13 - - - BICOMP - 35 11 20 36 61 223 77 37 54 203 56 224 22 42 2 73 8 27 62 43 46 57 16 13 + BILINK + 60 61 105 21 106 123 69 20 222 75 95 80 96 109 117 65 9 13 53 64 19 10 74 114 71 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\Object\LMS_ARM.d79 - ICCARM - 162 - - - BICOMP - 178 + XLINK + 119 15 - ICCARM - 35 20 36 61 39 81 - - - BICOMP - 35 20 36 61 39 81 + XLINK + 92 78 100 118 99 63 87 12 52 54 101 16 17 81 6 82 14 90 113 70 22 59 103 62 67 77 107 72 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\Object\c_output.s - ICCARM - 94 + AARM + 16 + + + + $PROJ_DIR$\..\Object\Cstartup_SAM7.s + - BICOMP - 124 + AARM + 100 - + + + $PROJ_DIR$\..\Object\d_bt.s + - ICCARM - 35 20 36 61 41 60 + AARM + 6 + + + + $PROJ_DIR$\..\Object\d_input.s + - BICOMP - 35 20 36 61 41 60 + AARM + 113 - + - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\c_led.c ICCARM - 157 - - - BICOMP - 116 + 8 ICCARM - 35 20 36 61 53 52 143 - - - BICOMP - 35 20 36 61 53 52 143 + 184 143 57 89 83 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_led.c ICCARM - 163 - - - BICOMP - 169 + 84 ICCARM - 35 20 36 61 194 201 - - - BICOMP - 35 20 36 61 194 201 + 184 207 189 168 83 5 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\Object\c_sound.s - ICCARM - 172 + AARM + 17 - - BICOMP - 109 + + + + $PROJ_DIR$\..\Object\c_lowspeed.s + + + AARM + 101 - + + + $PROJ_DIR$\..\Object\c_display.s + - ICCARM - 35 20 36 61 67 6 + AARM + 87 + + + + $PROJ_DIR$\..\Object\d_lowspeed.s + - BICOMP - 35 20 36 61 67 6 + AARM + 59 - + - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\Object\d_ioctrl.s - ICCARM - 102 + AARM + 70 + + + + + $PROJ_DIR$\..\Object\d_usb.s + + + AARM + 77 + + + + $PROJ_DIR$\..\Object\d_loader.s + - BICOMP - 166 + AARM + 22 - + + + $PROJ_DIR$\..\Object\c_cmd.s + - ICCARM - 35 11 20 36 61 30 82 65 12 189 5 40 84 204 205 220 18 199 47 34 74 + AARM + 99 + + + + $PROJ_DIR$\..\Object\c_loader.s + - BICOMP - 35 11 20 36 61 30 82 65 12 189 5 40 84 204 205 220 18 199 47 34 74 + AARM + 54 - + + + + $PROJ_DIR$\..\Object\d_output.s + + + AARM + 103 + + + + + $PROJ_DIR$\..\Object\d_hispeed.s + + + AARM + 90 + + + + + $PROJ_DIR$\..\Object\c_input.s + + + AARM + 12 + + + + + $PROJ_DIR$\..\Object\c_comm.s + + + AARM + 63 + + + + + $PROJ_DIR$\..\Object\d_timer.s + + + AARM + 67 + + Flash Debug - $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\d_display.h - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\..\Source\c_button.iom - $PROJ_DIR$\..\..\Source\d_usb.r - $PROJ_DIR$\..\..\Source\Submenu06.rms - $TOOLKIT_DIR$\inc\xtls.h - $PROJ_DIR$\..\..\Source\Wait.txt - $PROJ_DIR$\..\..\Source\RCXintro_5.txt - $PROJ_DIR$\..\..\Source\modules.h - $PROJ_DIR$\..\..\Source\c_input.iom - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\RCXintro_3.txt $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\BtTest.inc - $TOOLKIT_DIR$\inc\DLib_Threads.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_button.h - $TOOLKIT_DIR$\inc\xmtx.h - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\c_ioctrl.h - $PROJ_DIR$\..\..\Source\stdconst.h - $PROJ_DIR$\..\Include\sam7s256.h - $TOOLKIT_DIR$\inc\string.h - $PROJ_DIR$\..\..\Source\c_ui.iom - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $PROJ_DIR$\..\..\Source\c_loader.h - $PROJ_DIR$\..\..\Source\d_output.h - $TOOLKIT_DIR$\inc\ysizet.h - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\RCXintro_9.txt - $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $TOOLKIT_DIR$\inc\xlocale_c.h - $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\d_hispeed.r - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\Ui.txt - $PROJ_DIR$\..\..\Source\d_sound.r - $PROJ_DIR$\..\..\Source\d_sound.h - $TOOLKIT_DIR$\inc\yvals.h - $PROJ_DIR$\..\..\Source\d_bt.r - $TOOLKIT_DIR$\inc\DLib_Product.h - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\..\..\Source\d_hispeed.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\RCXintro_15.txt - $PROJ_DIR$\..\..\Source\c_comm.iom - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\d_usb.h $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\d_bt.h - $PROJ_DIR$\..\..\Source\Submenu01.rms - $PROJ_DIR$\..\..\Source\Ok.txt - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\..\..\Source\d_loader.r - $PROJ_DIR$\..\..\Source\RCXintro_14.txt - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\Lib\dl4tptinl8n.h - $PROJ_DIR$\..\..\Source\d_lowspeed.r - $PROJ_DIR$\..\..\Source\c_comm.h - $PROJ_DIR$\..\..\Source\Display.txt - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\c_ioctrl.iom - $PROJ_DIR$\..\..\Source\Submenu07.rms - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\..\..\Source\Test1.txt - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\c_loader.iom - $PROJ_DIR$\..\Object\c_lowspeed.pbi - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $PROJ_DIR$\..\Object\d_output.r79 - $PROJ_DIR$\..\Object\d_display.r79 - $PROJ_DIR$\..\Object\d_led.r79 - $PROJ_DIR$\..\Object\c_cmd.pbi - $PROJ_DIR$\..\Object\c_lowspeed.r79 - $PROJ_DIR$\..\Object\m_sched.r79 - $PROJ_DIR$\..\Object\d_button.pbi - $PROJ_DIR$\..\Object\d_input.r79 - $PROJ_DIR$\..\Object\d_usb.pbi - $PROJ_DIR$\..\..\Source\d_avrcomm.h - $PROJ_DIR$\..\..\Source\c_bt.c - $PROJ_DIR$\..\Object\c_button.r79 - $PROJ_DIR$\..\Object\LMS_ARM.map + $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\..\Source\d_led.r + $PROJ_DIR$\..\Object\d_bt.r79 + $PROJ_DIR$\..\Object\c_led.r79 + $PROJ_DIR$\..\Object\d_input.pbi $PROJ_DIR$\..\Object\d_sound.pbi $PROJ_DIR$\..\Object\c_input.r79 $PROJ_DIR$\..\Object\d_ioctrl.pbi + $PROJ_DIR$\..\Object\d_display.r79 $PROJ_DIR$\..\Object\c_output.r79 $PROJ_DIR$\..\Object\c_sound.r79 $PROJ_DIR$\..\Object\d_output.pbi $PROJ_DIR$\..\Object\c_loader.pbi $PROJ_DIR$\..\Object\c_comm.pbi $PROJ_DIR$\..\Object\d_loader.r79 - $TOOLKIT_DIR$\inc\ymath.h - $PROJ_DIR$\..\..\Source\d_led.c - $PROJ_DIR$\..\Object\c_input.pbi - $PROJ_DIR$\..\..\Source\d_led.r - $PROJ_DIR$\..\..\Source\c_led.h - $PROJ_DIR$\..\..\Source\Submenu03.rms - $PROJ_DIR$\at91SAM7S256_Remap.xcl - $PROJ_DIR$\..\Object\c_sound.pbi - $PROJ_DIR$\..\Object\d_bt.pbi - $PROJ_DIR$\..\..\Source\d_sound_adpcm.r - $PROJ_DIR$\..\Object\c_cmd.r79 - $PROJ_DIR$\..\Object\c_display.pbi - $PROJ_DIR$\..\Object\c_ioctrl.r79 - $PROJ_DIR$\..\Object\d_loader.pbi - $PROJ_DIR$\..\Object\c_loader.r79 - $PROJ_DIR$\..\Object\LMS_ARM.pbd - $PROJ_DIR$\..\Object\d_display.pbi - $PROJ_DIR$\..\Object\LMS_ARM.d79 - $TOOLKIT_DIR$\inc\limits.h - $PROJ_DIR$\..\Object\d_hispeed.r79 - $PROJ_DIR$\..\Object\c_button.pbi - $PROJ_DIR$\..\Object\d_sound.r79 - $PROJ_DIR$\..\Object\c_comm.r79 - $PROJ_DIR$\..\..\Source\c_led.iom - $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 - $PROJ_DIR$\..\Object\d_lowspeed.r79 - $PROJ_DIR$\..\Object\d_timer.r79 - $PROJ_DIR$\..\Object\c_ioctrl.pbi - $PROJ_DIR$\..\Object\d_ioctrl.r79 - $PROJ_DIR$\..\Object\m_sched.pbi - $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 - $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi - $PROJ_DIR$\..\Object\d_timer.pbi - $PROJ_DIR$\..\Object\c_output.pbi - $PROJ_DIR$\..\Object\d_usb.r79 - $PROJ_DIR$\..\Object\Cstartup.r79 - $PROJ_DIR$\..\Object\c_ui.pbi - $PROJ_DIR$\..\Object\c_ui.r79 - $PROJ_DIR$\..\Object\d_button.r79 + $PROJ_DIR$\..\..\Source\c_bt.c + $PROJ_DIR$\..\..\Source\c_net.c + $PROJ_DIR$\..\..\Source\c_comm.c + $TOOLKIT_DIR$\inc\stdlib.h + $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\Object\c_ioctrl.r79 + $PROJ_DIR$\..\Object\d_loader.pbi + $PROJ_DIR$\..\Object\c_loader.r79 + $PROJ_DIR$\..\Object\LMS_ARM.pbd + $PROJ_DIR$\..\..\Source\c_led.iom + $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\Object\d_lowspeed.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_button.pbi + $PROJ_DIR$\..\Object\d_sound.r79 + $PROJ_DIR$\..\Object\c_comm.r79 $PROJ_DIR$\..\Object\d_lowspeed.pbi $PROJ_DIR$\..\Object\d_hispeed.pbi + $PROJ_DIR$\..\Object\d_timer.r79 + $PROJ_DIR$\..\Object\c_ioctrl.pbi + $PROJ_DIR$\..\Object\d_ioctrl.r79 + $PROJ_DIR$\..\Object\m_sched.pbi + $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\Object\c_output.pbi + $PROJ_DIR$\..\Object\d_usb.r79 + $PROJ_DIR$\..\Object\Cstartup.r79 + $PROJ_DIR$\..\Object\c_ui.pbi + $PROJ_DIR$\..\Object\c_ui.r79 + $PROJ_DIR$\..\Object\d_button.r79 $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\Object\d_bt.r79 - $PROJ_DIR$\..\Object\c_led.r79 - $PROJ_DIR$\..\Object\d_input.pbi - $PROJ_DIR$\..\..\Source\d_sensor.c - $PROJ_DIR$\..\..\Source\d_button.r - $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\Cursor.txt - $PROJ_DIR$\..\..\Source\c_button.h - $TOOLKIT_DIR$\inc\stdio.h - $PROJ_DIR$\..\..\Source\c_usb.iom + $PROJ_DIR$\..\Object\d_led.r79 + $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\..\Source\d_avrcomm.h $PROJ_DIR$\..\..\Source\c_net.h $PROJ_DIR$\..\Object\c_hispeed.r79 - $PROJ_DIR$\..\..\Source\c_net.c - $PROJ_DIR$\..\..\Source\d_net.c - $PROJ_DIR$\..\..\Source\d_motor.c - $PROJ_DIR$\..\..\Source\c_usb.h - $PROJ_DIR$\..\..\include\lib_AT91SAM7S64.h - $PROJ_DIR$\..\..\Source\c_avrcomm.h - $PROJ_DIR$\..\..\Source\c_hispeed.iom - $PROJ_DIR$\..\..\Source\c_hispeed.c - $PROJ_DIR$\..\..\Source\d_motor.h - $PROJ_DIR$\..\..\Source\d_motor.r - $PROJ_DIR$\..\..\Source\d_sensor.h - $PROJ_DIR$\..\..\Source\c_sensor.iom - $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\c_usb.c $PROJ_DIR$\..\Object\c_net.r79 - $PROJ_DIR$\..\..\Source\c_avrcomm.c - $PROJ_DIR$\..\..\Source\c_hispeed.h - $PROJ_DIR$\..\Object\c_avrcomm.r79 + $PROJ_DIR$\..\..\Source\c_bt.iom $PROJ_DIR$\..\..\Source\c_motor.c $PROJ_DIR$\..\..\Source\d_sensor.r $PROJ_DIR$\..\Object\d_avrcomm.r79 @@ -2143,959 +2040,1062 @@ $PROJ_DIR$\..\..\Source\c_sensor.c $PROJ_DIR$\..\..\Source\c_motor.iom $PROJ_DIR$\..\..\Source\d_net.h + $PROJ_DIR$\..\..\Source\c_bt.h + $PROJ_DIR$\..\..\Source\c_usb.iom + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c $PROJ_DIR$\..\Object\d_motor.r79 $PROJ_DIR$\..\Object\LMS_ARM.sim - $PROJ_DIR$\..\..\Source\c_bt.h - $PROJ_DIR$\..\..\Source\c_usb.c - $PROJ_DIR$\..\..\Source\c_bt.iom + $PROJ_DIR$\..\..\Source\d_net.c + $PROJ_DIR$\Flash_Debug\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\Object\c_sound.pbi + $PROJ_DIR$\..\Object\d_bt.pbi + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + $PROJ_DIR$\..\Object\c_cmd.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\d_output.r79 + $PROJ_DIR$\..\Object\c_cmd.pbi + $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\Object\m_sched.r79 + $PROJ_DIR$\..\Object\d_button.pbi + $PROJ_DIR$\..\Object\d_input.r79 + $PROJ_DIR$\..\Object\d_usb.pbi + $PROJ_DIR$\..\Object\d_display.pbi + $PROJ_DIR$\..\Object\c_button.r79 + $PROJ_DIR$\..\Object\LMS_ARM.map + $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\Object\c_input.pbi + $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\c_usb.h + $PROJ_DIR$\..\..\Source\c_avrcomm.h + $PROJ_DIR$\..\..\Source\c_avrcomm.c + $PROJ_DIR$\..\..\Source\c_hispeed.h + $PROJ_DIR$\..\Object\c_avrcomm.r79 + $PROJ_DIR$\..\..\include\lib_AT91SAM7S64.h + $PROJ_DIR$\..\..\Source\c_sensor.h + $PROJ_DIR$\..\..\Source\c_hispeed.iom + $PROJ_DIR$\..\..\Source\c_hispeed.c + $PROJ_DIR$\..\..\Source\d_motor.h + $PROJ_DIR$\..\..\Source\d_motor.r + $PROJ_DIR$\..\..\Source\d_sensor.h + $PROJ_DIR$\..\..\Source\c_sensor.iom + $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\d_avrcomm.c $PROJ_DIR$\..\Include\lib_AT91SAM7S64.h $PROJ_DIR$\..\..\Source\c_motor.h $PROJ_DIR$\..\Include\AT91SAM7S64.h $PROJ_DIR$\..\Include\ioat91sam7s64.h $PROJ_DIR$\SrcIAR\Board.h $PROJ_DIR$\..\Object\main.r79 - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c - $PROJ_DIR$\Flash_Debug\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\Flash_Debug\Obj\Cstartup.r79 $PROJ_DIR$\..\Object\c_sensor.r79 - $PROJ_DIR$\..\..\Source\c_sensor.h - $PROJ_DIR$\..\Object\d_sensor.r79 - $PROJ_DIR$\..\..\Source\d_avrcomm.c $PROJ_DIR$\Flash_Debug\Obj\main.r79 - $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\Object\d_sensor.r79 $PROJ_DIR$\SrcIAR\Cstartup.s79 $PROJ_DIR$\..\Object\d_net.r79 - $PROJ_DIR$\Flash_Debug\Obj\Cstartup.r79 $PROJ_DIR$\..\Include\Board.h $PROJ_DIR$\..\Object\c_motor.r79 - $PROJ_DIR$\..\..\Source\c_led.c $PROJ_DIR$\..\..\include\AT91SAM7S64_inc.h $PROJ_DIR$\..\Object\c_bt.r79 $PROJ_DIR$\..\Object\c_usb.r79 $PROJ_DIR$\..\..\include\AT91SAM7S64.h - $PROJ_DIR$\..\..\Source\Running.txt - $PROJ_DIR$\..\..\Source\Info.txt - $PROJ_DIR$\..\..\Source\d_timer.h - $PROJ_DIR$\..\..\Source\Status.txt - $PROJ_DIR$\..\..\Source\Step.txt - $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\d_timer.r $PROJ_DIR$\..\..\Source\RCXintro_12.txt $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\..\..\Source\c_display.iom - $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\..\Source\Submenu04.rms $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\Submenu02.rms $PROJ_DIR$\..\..\Source\d_ioctrl.h - $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\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\d_button.h $PROJ_DIR$\..\..\Source\c_output.h - $PROJ_DIR$\..\..\Source\c_display.c - $PROJ_DIR$\..\..\Source\c_lowspeed.iom $PROJ_DIR$\..\..\Source\d_loader.h $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\Object\c_display.r79 - $PROJ_DIR$\..\..\Source\c_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\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c $PROJ_DIR$\..\..\Source\Port.txt - - - [ROOT_NODE] - - - XLINK - 106 197 133 - - - - - $PROJ_DIR$\..\..\Source\c_cmd.c - - - ICCARM - 126 - - - BICOMP - 97 - - - - - ICCARM - 35 11 47 164 12 91 38 230 5 233 64 255 20 36 61 18 232 227 167 54 236 80 56 257 22 42 37 62 157 116 134 79 - - - BICOMP - 35 11 47 164 12 91 38 230 5 233 64 255 20 36 61 18 232 227 167 54 236 56 257 22 42 37 62 157 116 134 79 - - - - - $PROJ_DIR$\..\..\Source\c_comm.c - - - ICCARM - 138 - - - BICOMP - 114 - - - - - ICCARM - 35 11 64 91 85 38 47 233 82 67 58 69 37 54 236 80 56 257 22 42 2 73 8 27 62 43 46 57 16 13 - - - BICOMP - 35 11 64 91 85 38 47 233 82 67 58 69 37 54 236 56 257 22 42 2 73 8 27 62 43 46 57 16 13 - - - - - $PROJ_DIR$\..\..\Source\c_bt.c - - - ICCARM - 222 - - - - - ICCARM - 35 11 200 198 69 47 - - - - - $PROJ_DIR$\..\..\Source\d_led.c - - - ICCARM - 96 - - - - - ICCARM - 35 20 36 61 158 119 - - - + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\modules.h + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_usb.r + $PROJ_DIR$\..\..\Source\c_button.iom + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_display.h + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\BtTest.inc + $TOOLKIT_DIR$\inc\DLib_Threads.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Wait.txt + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\c_loader.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\d_hispeed.h + $TOOLKIT_DIR$\inc\xtinfo.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.r + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\stdconst.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\Ok.txt + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_timer.h + $TOOLKIT_DIR$\inc\ymath.h + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\Object\c_lowspeed.pbi + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\d_button.r + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_output.iom + - $PROJ_DIR$\..\Object\LMS_ARM.pbd - + $PROJ_DIR$\..\..\Source\c_button.c + - BILINK - 147 136 97 114 127 118 143 113 92 149 123 152 124 100 132 156 161 109 129 155 112 107 148 102 145 + BICOMP + 55 - - - - $PROJ_DIR$\..\Object\LMS_ARM.d79 - - XLINK - 106 197 + ICCARM + 118 - XLINK - 122 151 140 105 126 138 258 108 128 130 98 110 111 153 159 154 95 135 101 144 115 141 94 137 142 150 99 146 + BICOMP + 217 176 263 185 167 + + + ICCARM + 217 176 263 185 167 - $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\c_cmd.c + + BICOMP + 111 + ICCARM - 211 + 107 + + BICOMP + 217 176 214 272 245 269 225 253 185 254 256 172 240 222 201 183 159 249 266 207 162 175 170 190 196 218 22 65 250 120 258 + ICCARM - 35 20 36 204 181 189 + 217 176 214 272 245 269 225 253 185 254 256 172 240 222 201 183 159 249 266 207 162 259 175 170 190 196 218 22 65 250 120 258 - $PROJ_DIR$\..\..\Source\c_net.c + [ROOT_NODE] - ICCARM - 184 + XLINK + 119 97 52 - - - ICCARM - 35 169 195 - - - $PROJ_DIR$\..\..\Source\d_net.c + $PROJ_DIR$\..\..\Source\c_bt.c ICCARM - 216 + 154 ICCARM - 35 20 36 204 195 191 + 217 176 84 93 248 214 - $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\c_net.c ICCARM - 196 + 83 ICCARM - 35 20 36 204 179 180 + 217 79 92 - $PROJ_DIR$\..\..\Source\c_hispeed.c + $PROJ_DIR$\..\..\Source\c_comm.c + + BICOMP + 17 + ICCARM - 170 + 57 + + BICOMP + 217 176 256 269 243 225 214 254 257 237 212 248 218 207 162 175 170 190 196 188 229 193 186 22 194 208 213 177 221 + ICCARM - 35 11 177 186 58 + 217 176 256 269 243 225 214 254 257 237 212 248 218 207 162 259 175 170 190 196 188 229 193 186 22 194 208 213 177 221 - $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\c_display.c + + BICOMP + 112 + ICCARM - 213 + 77 + + BICOMP + 218 207 162 175 170 190 196 217 176 254 160 187 + ICCARM - 205 224 175 + 218 207 162 259 175 170 190 196 217 176 254 160 187 - $PROJ_DIR$\..\..\Source\c_avrcomm.c + $PROJ_DIR$\..\..\Source\c_input.c + + BICOMP + 121 + ICCARM - 187 + 10 + + BICOMP + 217 176 238 245 1 272 269 218 207 162 175 170 190 196 + ICCARM - 35 176 103 + 217 176 238 245 1 272 269 218 207 162 259 175 170 190 196 - $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c + + BICOMP + 61 + ICCARM - 219 + 47 + + BICOMP + 217 176 243 219 165 + ICCARM - 35 11 194 202 179 + 217 176 243 219 165 - $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_loader.c + + BICOMP + 16 + ICCARM - 209 + 49 + + BICOMP + 217 176 269 243 169 195 218 207 162 175 170 190 196 + ICCARM - 35 11 182 210 181 + 217 176 269 243 169 195 218 207 162 259 175 170 190 196 - $PROJ_DIR$\..\..\Source\c_usb.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c + + BICOMP + 255 + ICCARM - 223 + 109 + + BICOMP + 217 176 172 245 163 202 + ICCARM - 35 11 168 174 67 + 217 176 172 245 163 202 - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_output.c + + BICOMP + 67 + ICCARM - 208 + 13 + + BICOMP + 266 207 162 175 170 190 196 203 217 176 272 168 179 254 + ICCARM - 205 224 175 + 266 207 162 259 175 170 190 196 203 217 176 272 168 179 254 - $PROJ_DIR$\..\..\Source\d_avrcomm.c + $PROJ_DIR$\..\..\Source\c_sound.c + + BICOMP + 104 + ICCARM - 190 + 14 + + BICOMP + 22 207 162 175 170 190 196 218 217 176 253 269 235 206 + ICCARM - 35 20 36 204 103 192 + 22 207 162 259 175 170 190 196 218 217 176 253 269 235 206 - $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\Source\c_ui.c + + BICOMP + 70 + ICCARM - 206 + 71 + + BICOMP + 266 207 162 175 170 190 196 218 188 229 193 186 22 194 208 213 177 221 217 176 225 227 240 222 201 254 269 185 253 245 272 243 214 256 172 260 178 236 252 261 265 171 228 192 197 267 173 211 231 0 216 247 209 166 181 198 233 220 158 262 246 241 264 251 230 271 204 2 226 164 102 161 191 234 244 45 189 268 223 + ICCARM - 218 203 201 + 266 207 162 259 175 170 190 196 218 188 229 193 186 22 194 208 213 177 221 217 176 225 227 240 222 201 254 269 185 253 245 272 243 214 256 172 260 178 236 252 261 265 171 228 192 197 267 173 211 231 0 216 247 209 166 181 198 233 220 158 262 246 241 264 251 230 271 204 2 226 164 102 161 191 234 244 45 189 268 223 - $PROJ_DIR$\SrcIAR\Cstartup.s79 + $PROJ_DIR$\..\Include\Cstartup.s79 AARM - 217 + 69 AARM - 221 + 224 - $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + + BICOMP + 54 + ICCARM - 160 + 108 + + BICOMP + 199 + ICCARM - 35 11 139 120 158 + 199 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_bt.c - ICCARM - 108 + BICOMP + 105 - BICOMP - 118 + ICCARM + 6 - ICCARM - 35 11 65 12 19 164 91 37 54 236 80 56 257 22 42 + BICOMP + 217 176 240 222 201 248 174 218 207 162 175 170 190 196 - BICOMP - 35 11 65 12 19 164 91 37 54 236 56 257 22 42 + ICCARM + 217 176 240 222 201 248 174 218 207 162 259 175 170 190 196 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_button.c - ICCARM - 128 + BICOMP + 114 - BICOMP - 143 + ICCARM + 72 - ICCARM - 35 11 85 34 241 + BICOMP + 217 240 222 201 167 270 - BICOMP - 35 11 85 34 241 + ICCARM + 217 240 222 201 167 270 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\d_display.c - ICCARM - 130 + BICOMP + 117 - BICOMP - 113 + ICCARM + 12 - ICCARM - 35 11 91 85 256 40 37 54 236 80 56 257 22 42 + BICOMP + 217 240 222 201 187 182 - BICOMP - 35 11 91 85 256 40 37 54 236 56 257 22 42 + ICCARM + 217 240 222 201 187 182 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - ICCARM - 98 + BICOMP + 59 - BICOMP - 92 + ICCARM + 101 - ICCARM - 35 11 255 12 238 39 + BICOMP + 217 240 222 201 212 215 - BICOMP - 35 11 255 12 238 39 + ICCARM + 217 240 222 201 212 215 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 110 + BICOMP + 8 - BICOMP - 149 + ICCARM + 115 - ICCARM - 167 54 236 80 56 257 22 42 32 35 11 164 253 41 233 + BICOMP + 217 240 222 201 238 245 1 239 - BICOMP - 167 54 236 56 257 22 42 32 35 11 164 253 41 233 + ICCARM + 217 240 222 201 238 245 1 239 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - ICCARM - 111 + BICOMP + 11 - BICOMP - 123 + ICCARM + 62 - ICCARM - 62 54 236 80 56 257 22 42 37 35 11 230 91 84 53 + BICOMP + 218 207 162 175 170 190 196 217 240 222 201 165 180 - BICOMP - 62 54 236 56 257 22 42 37 35 11 230 91 84 53 + ICCARM + 218 207 162 259 175 170 190 196 217 240 222 201 165 180 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\d_loader.c - ICCARM - 153 + BICOMP + 48 - BICOMP - 152 + ICCARM + 18 - ICCARM - 167 54 236 80 56 257 22 42 37 2 73 8 27 62 43 46 57 16 13 35 11 38 74 20 36 61 233 91 5 230 12 164 85 47 64 255 83 24 3 229 165 225 272 71 9 59 226 25 31 72 87 45 10 29 239 15 44 76 14 231 90 78 63 93 228 75 88 51 68 70 240 121 235 23 7 86 270 21 89 49 + BICOMP + 217 176 240 222 201 169 232 218 207 162 175 170 190 196 188 229 193 186 22 194 208 213 177 221 - BICOMP - 167 54 236 56 257 22 42 37 2 73 8 27 62 43 46 57 16 13 35 11 38 74 20 36 61 233 91 5 230 12 164 85 47 64 255 83 24 3 229 165 225 272 71 9 59 226 25 31 72 87 45 10 29 239 15 44 76 14 231 90 78 63 93 228 75 88 51 68 70 240 121 235 23 7 86 270 21 89 49 + ICCARM + 217 176 240 222 201 169 232 218 207 162 259 175 170 190 196 188 229 193 186 22 194 208 213 177 221 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\d_lowspeed.c - AARM - 151 + BICOMP + 58 + + + ICCARM + 53 - AARM - 50 + BICOMP + 217 240 222 201 202 242 + + + ICCARM + 217 240 222 201 202 242 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_output.c - ICCARM - 140 + BICOMP + 15 - BICOMP - 147 + ICCARM + 110 - ICCARM - 33 + BICOMP + 217 240 222 201 179 200 - BICOMP - 33 + ICCARM + 217 240 222 201 179 200 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_sound.c - ICCARM - 159 + BICOMP + 9 - BICOMP - 124 + ICCARM + 56 - ICCARM - 35 11 20 36 61 69 55 37 54 236 80 56 257 22 42 + BICOMP + 217 240 222 201 206 205 106 - BICOMP - 35 11 20 36 61 69 55 37 54 236 56 257 22 42 + ICCARM + 217 240 222 201 206 205 106 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_timer.c - ICCARM - 154 + BICOMP + 66 - BICOMP - 100 + ICCARM + 60 - ICCARM - 35 20 36 61 26 163 + BICOMP + 217 240 222 201 249 157 - BICOMP - 35 20 36 61 26 163 + ICCARM + 217 240 222 201 249 157 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_usb.c - ICCARM - 258 + BICOMP + 116 - BICOMP - 127 + ICCARM + 68 - ICCARM - 37 54 236 80 56 257 22 42 35 11 233 237 1 + BICOMP + 217 240 222 201 237 184 - BICOMP - 37 54 236 56 257 22 42 35 11 233 237 1 + ICCARM + 217 240 222 201 237 184 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\m_sched.c - ICCARM - 105 + BICOMP + 63 - BICOMP - 136 + ICCARM + 113 - ICCARM - 35 11 166 5 26 + BICOMP + 217 176 240 222 201 210 257 238 245 263 185 195 235 160 163 168 183 159 214 219 227 - BICOMP - 35 11 166 5 26 + ICCARM + 217 176 240 222 201 210 257 238 245 263 185 195 235 160 163 168 183 159 214 219 227 - $PROJ_DIR$\..\..\Source\d_display.c - + $PROJ_DIR$\..\Object\LMS_ARM.pbd + - ICCARM - 95 + BILINK + 54 55 111 17 112 121 61 16 255 67 104 70 105 114 117 59 8 11 48 58 15 9 66 116 63 + + + + $PROJ_DIR$\..\Object\LMS_ARM.d79 + - BICOMP - 132 + XLINK + 119 97 - ICCARM - 35 20 36 61 1 28 - - - BICOMP - 35 20 36 61 1 28 + XLINK + 103 69 108 118 107 57 77 10 47 49 109 13 14 71 6 72 12 101 115 62 18 53 110 56 60 68 113 64 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_led.c ICCARM - 135 - - - BICOMP - 156 + 7 ICCARM - 35 20 36 61 58 48 - - - BICOMP - 35 20 36 61 58 48 + 217 176 51 100 73 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\d_led.c ICCARM - 101 - - - BICOMP - 161 + 74 ICCARM - 35 20 36 61 65 12 19 66 - - - BICOMP - 35 20 36 61 65 12 19 66 + 217 240 222 201 73 5 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\d_sensor.c ICCARM - 144 - - - BICOMP - 109 + 148 ICCARM - 37 54 236 80 56 257 22 42 35 20 36 61 241 17 - - - BICOMP - 37 54 236 56 257 22 42 35 20 36 61 241 17 + 217 240 222 141 134 86 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_usb.c ICCARM - 115 - - - BICOMP - 129 + 155 ICCARM - 35 11 20 36 61 256 77 37 54 236 80 56 257 22 42 2 73 8 27 62 43 46 57 16 13 - - - BICOMP - 35 11 20 36 61 256 77 37 54 236 56 257 22 42 2 73 8 27 62 43 46 57 16 13 + 217 176 94 123 237 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\c_motor.c ICCARM - 141 - - - BICOMP - 155 + 152 ICCARM - 35 20 36 61 39 81 - - - BICOMP - 35 20 36 61 39 81 + 217 176 91 139 132 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\c_sensor.c ICCARM - 94 - - - BICOMP - 112 + 146 ICCARM - 35 20 36 61 41 60 - - - BICOMP - 35 20 36 61 41 60 + 217 176 135 129 134 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c ICCARM - 137 - - - BICOMP - 107 + 99 ICCARM - 35 20 36 61 53 52 125 - - - BICOMP - 35 20 36 61 53 52 125 + 142 156 128 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_net.c ICCARM - 142 - - - BICOMP - 148 + 150 ICCARM - 35 20 36 61 227 234 - - - BICOMP - 35 20 36 61 227 234 + 217 240 222 141 92 88 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_motor.c ICCARM - 150 + 96 + + - BICOMP - 102 + ICCARM + 217 240 222 141 132 133 + + + + + $PROJ_DIR$\..\..\Source\c_avrcomm.c + + + ICCARM + 127 ICCARM - 35 20 36 61 67 6 + 217 124 78 + + + + $PROJ_DIR$\..\..\Source\c_hispeed.c + - BICOMP - 35 20 36 61 67 6 + ICCARM + 80 + + + + + ICCARM + 217 176 130 126 212 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\src\main.c ICCARM - 99 + 147 + + - BICOMP - 145 + ICCARM + 142 156 128 + + + + + $PROJ_DIR$\..\..\Source\d_avrcomm.c + + + ICCARM + 87 + + + + + ICCARM + 217 240 222 141 78 89 + + + + + $PROJ_DIR$\..\..\Source\main.c + + + ICCARM + 143 ICCARM - 35 11 20 36 61 30 82 65 12 166 5 40 84 237 238 253 18 232 47 34 74 + 151 140 138 + + + + $PROJ_DIR$\SrcIAR\Cstartup.s79 + - BICOMP - 35 11 20 36 61 30 82 65 12 166 5 40 84 237 238 253 18 232 47 34 74 + AARM + 145 + + + + + AARM + 153 @@ -3103,151 +3103,118 @@ RAM_Debug + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\c_button.c $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\d_display.h - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_led.r $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\..\Source\c_button.iom - $PROJ_DIR$\..\..\Source\d_usb.r - $PROJ_DIR$\..\..\Source\Submenu06.rms - $TOOLKIT_DIR$\inc\xtls.h - $PROJ_DIR$\..\..\Source\Wait.txt - $PROJ_DIR$\..\..\Source\RCXintro_5.txt - $PROJ_DIR$\..\..\Source\modules.h - $PROJ_DIR$\..\..\Source\c_input.iom - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\BtTest.inc - $TOOLKIT_DIR$\inc\DLib_Threads.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_button.h - $TOOLKIT_DIR$\inc\xmtx.h - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\c_ioctrl.h - $PROJ_DIR$\..\..\Source\stdconst.h - $PROJ_DIR$\..\Include\sam7s256.h - $TOOLKIT_DIR$\inc\string.h - $PROJ_DIR$\..\..\Source\c_ui.iom - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $PROJ_DIR$\..\..\Source\c_loader.h - $PROJ_DIR$\..\..\Source\d_output.h - $TOOLKIT_DIR$\inc\ysizet.h - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\RCXintro_9.txt - $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $TOOLKIT_DIR$\inc\xlocale_c.h - $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\d_hispeed.r - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\Ui.txt - $PROJ_DIR$\..\..\Source\d_sound.r - $PROJ_DIR$\..\..\Source\d_sound.h - $TOOLKIT_DIR$\inc\yvals.h - $PROJ_DIR$\..\..\Source\d_bt.r - $TOOLKIT_DIR$\inc\DLib_Product.h - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\..\..\Source\d_hispeed.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\Include\ioat91sam7s256.h $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\RCXintro_15.txt - $PROJ_DIR$\..\..\Source\c_comm.iom - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\d_usb.h - $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\d_bt.h - $PROJ_DIR$\..\..\Source\Submenu01.rms - $PROJ_DIR$\..\..\Source\Ok.txt - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\..\..\Source\d_loader.r - $PROJ_DIR$\..\..\Source\RCXintro_14.txt - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\..\Source\d_lowspeed.r - $PROJ_DIR$\..\..\Source\c_comm.h - $PROJ_DIR$\..\..\Source\Display.txt - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\c_ioctrl.iom - $PROJ_DIR$\..\..\Source\Submenu07.rms - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\..\..\Source\Test1.txt - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\c_loader.iom - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $PROJ_DIR$\RAM_Debug\Obj\c_button.r79 - $TOOLKIT_DIR$\inc\ymath.h + $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_led.iom + $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\..\Source\d_led.h + $PROJ_DIR$\..\..\Source\c_led.c $PROJ_DIR$\..\..\Source\d_led.c - $PROJ_DIR$\..\..\Source\d_led.r + $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\d_sensor.r + $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_motor.iom + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c $PROJ_DIR$\..\..\Source\c_led.h $PROJ_DIR$\..\..\Source\Submenu03.rms $PROJ_DIR$\..\..\Source\d_sound_adpcm.r $TOOLKIT_DIR$\inc\limits.h - $PROJ_DIR$\..\..\Source\c_led.iom - $TOOLKIT_DIR$\inc\math.h - $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\..\Source\d_sensor.c - $PROJ_DIR$\..\..\Source\d_button.r - $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\Cursor.txt - $PROJ_DIR$\..\..\Source\c_button.h - $TOOLKIT_DIR$\inc\stdio.h $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\c_sensor.h $PROJ_DIR$\..\..\Source\d_motor.h $PROJ_DIR$\..\..\Source\d_motor.r $PROJ_DIR$\..\..\Source\d_sensor.h $PROJ_DIR$\..\..\Source\c_sensor.iom $PROJ_DIR$\..\src\main.c - $PROJ_DIR$\..\..\Source\c_motor.c - $PROJ_DIR$\..\..\Source\d_sensor.r - $PROJ_DIR$\..\..\Source\c_sensor.c - $PROJ_DIR$\..\..\Source\c_motor.iom $PROJ_DIR$\..\..\Source\c_motor.h $PROJ_DIR$\..\Include\ioat91sam7s64.h - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c - $PROJ_DIR$\..\..\Source\c_sensor.h $PROJ_DIR$\..\..\Source\main.c $PROJ_DIR$\SrcIAR\Cstartup.s79 - $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.r79 - $PROJ_DIR$\..\..\Source\c_led.c - $PROJ_DIR$\RAM_Debug\Obj\m_sched.r79 $PROJ_DIR$\RAM_Debug\Obj\c_output.r79 - $PROJ_DIR$\..\..\Source\Running.txt - $PROJ_DIR$\..\..\Source\Info.txt - $PROJ_DIR$\..\..\Source\d_timer.h - $PROJ_DIR$\..\..\Source\Status.txt - $PROJ_DIR$\..\..\Source\Step.txt - $PROJ_DIR$\RAM_Debug\Obj\c_ui.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_timer.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_ioctrl.pbi + $PROJ_DIR$\RAM_Debug\Obj\m_sched.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_led.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_ui.r79 + $PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_usb.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_button.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_loader.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_comm.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_display.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_output.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_output.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_sound.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_button.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_comm.pbi + $PROJ_DIR$\RAM_Debug\Exe\LMS_ARM.d79 + $PROJ_DIR$\RAM_Debug\Obj\c_led.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_sound.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_loader.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_loader.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_button.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_input.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_display.pbi + $PROJ_DIR$\RAM_Debug\Obj\m_sched.pbi + $PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.pbi + $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd + $PROJ_DIR$\RAM_Debug\Obj\d_button.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_sensor.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_cmd.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_lowspeed.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_display.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_input.pbi + $TOOLKIT_DIR$\lib\dl4tptinl8n.h $PROJ_DIR$\RAM_Debug\Obj\sam7s256.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_input.r79 $PROJ_DIR$\RAM_Debug\Obj\d_lowspeed.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_ui.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_motor.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_sensor.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_ioctrl.r79 $PROJ_DIR$\RAM_Debug\Obj\Cstartup.r79 $PROJ_DIR$\RAM_Debug\Obj\d_input.pbi $PROJ_DIR$\RAM_Debug\Obj\d_motor.r79 $PROJ_DIR$\RAM_Debug\Obj\d_timer.pbi $PROJ_DIR$\RAM_Debug\Obj\d_loader.pbi $PROJ_DIR$\RAM_Debug\Obj\d_output.r79 - $PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.pbi $PROJ_DIR$\RAM_Debug\Obj\main.r79 $PROJ_DIR$\RAM_Debug\Obj\d_usb.r79 $PROJ_DIR$\RAM_Debug\Obj\d_bt.pbi @@ -3256,830 +3223,863 @@ $PROJ_DIR$\RAM_Debug\Obj\d_display.r79 $PROJ_DIR$\RAM_Debug\Obj\d_bt.r79 $PROJ_DIR$\RAM_Debug\Obj\c_sound.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_timer.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_loader.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_comm.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_button.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_sensor.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_cmd.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_led.r79 - $PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_usb.pbi - $PROJ_DIR$\RAM_Debug\Obj\m_sched.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_output.pbi - $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd - $PROJ_DIR$\RAM_Debug\Obj\d_lowspeed.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_display.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_input.pbi - $TOOLKIT_DIR$\lib\dl4tptinl8n.h - $PROJ_DIR$\RAM_Debug\Obj\d_display.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_ioctrl.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_output.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_sound.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_button.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_comm.pbi - $PROJ_DIR$\RAM_Debug\Exe\LMS_ARM.d79 - $PROJ_DIR$\RAM_Debug\Obj\d_input.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.pbi + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\Submenu04.rms + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\Submenu02.rms + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\d_loader.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\modules.h + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_usb.r + $PROJ_DIR$\..\..\Source\c_button.iom + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_display.h + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\BtTest.inc + $TOOLKIT_DIR$\inc\DLib_Threads.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\Wait.txt + $TOOLKIT_DIR$\inc\xtls.h + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\c_loader.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\d_sound.h + $TOOLKIT_DIR$\inc\yvals.h + $TOOLKIT_DIR$\inc\xlocale_c.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\d_hispeed.h + $TOOLKIT_DIR$\inc\xtinfo.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.r + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\..\Source\stdconst.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\Ok.txt + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\d_timer.h + $TOOLKIT_DIR$\inc\ymath.h + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Step.txt $PROJ_DIR$\..\..\Source\c_sound.iom - $PROJ_DIR$\..\..\Source\RCXintro_12.txt - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\RAM_Debug\Obj\d_sound.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_ui.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_loader.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_button.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_input.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_display.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.pbi $PROJ_DIR$\..\..\Source\c_display.iom - $PROJ_DIR$\RAM_Debug\Obj\c_led.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_loader.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_motor.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_sensor.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_ioctrl.r79 - $PROJ_DIR$\..\..\Source\d_timer.r - $PROJ_DIR$\..\..\Source\Submenu04.rms - $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\..\..\Source\c_display.h - $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt - $PROJ_DIR$\..\..\Source\Submenu02.rms - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $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\c_output.h - $PROJ_DIR$\..\..\Source\c_display.c - $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\..\..\Source\d_loader.h - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_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\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c - $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\d_button.r + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_output.iom - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\c_button.c - XLINK - 177 + BICOMP + 81 - - - - $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 149 - - - BICOMP - 158 + 66 - ICCARM - 35 11 47 105 12 90 38 180 5 190 64 217 20 36 61 18 182 131 108 54 198 170 56 219 22 42 37 62 101 93 99 79 + BICOMP + 180 139 224 148 130 - BICOMP - 35 11 47 105 12 90 38 180 5 190 64 217 20 36 61 18 182 131 108 54 198 56 219 22 42 37 62 101 93 99 79 + ICCARM + 180 139 224 148 130 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 155 + BICOMP + 89 - BICOMP - 176 + ICCARM + 116 - ICCARM - 35 11 64 90 84 38 47 190 81 67 58 69 37 54 198 170 56 219 22 42 2 73 8 27 62 43 46 57 16 13 + BICOMP + 180 139 177 233 208 230 188 216 148 217 218 135 203 185 164 146 122 212 227 170 125 138 133 153 159 181 7 33 213 46 220 - BICOMP - 35 11 64 90 84 38 47 190 81 67 58 69 37 54 198 56 219 22 42 2 73 8 27 62 43 46 57 16 13 + ICCARM + 180 139 177 233 208 230 188 216 148 217 218 135 203 185 164 146 122 212 227 170 125 95 138 133 153 159 181 7 33 213 46 220 - $PROJ_DIR$\..\Include\sam7s256.c + [ROOT_NODE] - ICCARM - 136 + XLINK + 75 - $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\c_comm.c + + BICOMP + 74 + ICCARM - 159 + 68 + + BICOMP + 180 139 218 230 206 188 177 217 219 200 175 211 181 170 125 138 133 153 159 151 192 156 149 7 157 171 176 140 184 + ICCARM - 35 20 36 120 102 95 + 180 139 218 230 206 188 177 217 219 200 175 211 181 170 125 95 138 133 153 159 151 192 156 149 7 157 171 176 140 184 - $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\c_display.c + + BICOMP + 83 + ICCARM - 157 + 91 + + BICOMP + 181 170 125 138 133 153 159 180 139 217 123 150 + ICCARM - 35 20 36 120 112 116 + 181 170 125 95 138 133 153 159 180 139 217 123 150 - $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\c_input.c + + BICOMP + 94 + ICCARM - 140 + 82 + + BICOMP + 180 139 201 208 1 233 230 181 170 125 138 133 153 159 + ICCARM - 35 20 36 120 110 111 + 180 139 201 208 1 233 230 181 170 125 95 138 133 153 159 - $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c - ICCARM - 145 + BICOMP + 60 - - - - $PROJ_DIR$\..\..\Source\c_motor.c - ICCARM - 193 + 105 + + BICOMP + 180 139 206 182 128 + ICCARM - 35 11 118 119 110 + 180 139 206 182 128 - $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_loader.c + + BICOMP + 67 + ICCARM - 194 + 80 + + BICOMP + 180 139 230 206 132 158 181 170 125 138 133 153 159 + ICCARM - 35 11 113 122 112 + 180 139 230 206 132 158 181 170 125 95 138 133 153 159 - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c + + BICOMP + 93 + ICCARM - 160 + 92 - - - $PROJ_DIR$\..\..\Source\main.c - + + + BICOMP + 180 139 135 208 126 165 + ICCARM - 145 + 180 139 135 208 126 165 - + - $PROJ_DIR$\SrcIAR\Cstartup.s79 + $PROJ_DIR$\..\..\Source\c_output.c - AARM - 138 + BICOMP + 70 - - - - $PROJ_DIR$\..\..\Source\c_led.c - ICCARM - 191 + 58 - ICCARM - 35 11 100 96 102 + BICOMP + 227 170 125 138 133 153 159 166 180 139 233 131 142 217 - - - - $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd - - BILINK - 144 186 158 176 188 169 172 154 168 163 152 134 147 175 171 189 139 179 142 165 173 183 141 161 162 + ICCARM + 227 170 125 95 138 133 153 159 166 180 139 233 131 142 217 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\c_sound.c - ICCARM - 187 + BICOMP + 119 - BICOMP - 169 + ICCARM + 115 - ICCARM - 35 11 65 12 19 105 90 37 54 198 170 56 219 22 42 + BICOMP + 7 170 125 138 133 153 159 181 180 139 216 230 198 169 - BICOMP - 35 11 65 12 19 105 90 37 54 198 56 219 22 42 + ICCARM + 7 170 125 95 138 133 153 159 181 180 139 216 230 198 169 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\c_ui.c - ICCARM - 195 + BICOMP + 100 - BICOMP - 172 + ICCARM + 63 - ICCARM - 35 11 84 34 203 + BICOMP + 227 170 125 138 133 153 159 181 151 192 156 149 7 157 171 176 140 184 180 139 188 190 203 185 164 217 230 148 216 208 233 206 177 218 135 221 141 199 215 222 226 134 191 155 160 228 136 174 194 0 179 210 172 129 144 161 196 183 121 223 209 204 225 214 193 232 167 2 189 127 44 124 154 197 207 30 152 229 186 - BICOMP - 35 11 84 34 203 + ICCARM + 227 170 125 95 138 133 153 159 181 151 192 156 149 7 157 171 176 140 184 180 139 188 190 203 185 164 217 230 148 216 208 233 206 177 218 135 221 141 199 215 222 226 134 191 155 160 228 136 174 194 0 179 210 172 129 144 161 196 183 121 223 209 204 225 214 193 232 167 2 189 127 44 124 154 197 207 30 152 229 186 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\Include\Cstartup.s79 - ICCARM - 185 - - - BICOMP - 154 + AARM + 106 - ICCARM - 35 11 90 84 218 40 37 54 198 170 56 219 22 42 - - - BICOMP - 35 11 90 84 218 40 37 54 198 56 219 22 42 + AARM + 187 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - ICCARM - 167 + BICOMP + 85 - BICOMP - 168 + ICCARM + 64 - ICCARM - 35 11 217 12 200 39 + BICOMP + 162 - BICOMP - 35 11 217 12 200 39 + ICCARM + 162 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_bt.c - ICCARM - 128 + BICOMP + 114 - BICOMP - 163 + ICCARM + 118 - ICCARM - 108 54 198 170 56 219 22 42 32 35 11 105 215 41 190 + BICOMP + 180 139 203 185 164 211 137 181 170 125 138 133 153 159 - BICOMP - 108 54 198 56 219 22 42 32 35 11 105 215 41 190 + ICCARM + 180 139 203 185 164 211 137 181 170 125 95 138 133 153 159 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\d_button.c - ICCARM - 148 + BICOMP + 73 - BICOMP - 152 + ICCARM + 87 - ICCARM - 62 54 198 170 56 219 22 42 37 35 11 180 90 83 53 + BICOMP + 180 203 185 164 130 231 - BICOMP - 62 54 198 56 219 22 42 37 35 11 180 90 83 53 + ICCARM + 180 203 185 164 130 231 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\d_display.c - ICCARM - 184 + BICOMP + 69 - BICOMP - 134 + ICCARM + 117 - ICCARM - 108 54 198 170 56 219 22 42 37 2 73 8 27 62 43 46 57 16 13 35 11 38 74 20 36 61 190 90 5 180 12 105 84 47 64 217 82 24 3 133 106 129 233 71 9 59 130 25 31 72 86 45 10 29 201 15 44 76 14 181 89 78 63 91 132 75 87 51 68 70 202 97 197 23 7 85 231 21 88 49 + BICOMP + 180 203 185 164 150 145 - BICOMP - 108 54 198 56 219 22 42 37 2 73 8 27 62 43 46 57 16 13 35 11 38 74 20 36 61 190 90 5 180 12 105 84 47 64 217 82 24 3 133 106 129 233 71 9 59 130 25 31 72 86 45 10 29 201 15 44 76 14 181 89 78 63 91 132 75 87 51 68 70 202 97 197 23 7 85 231 21 88 49 + ICCARM + 180 203 185 164 150 145 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\d_hispeed.c - AARM - 138 + BICOMP + 102 + + + ICCARM + 101 - AARM - 50 + BICOMP + 180 203 185 164 175 178 + + + ICCARM + 180 203 185 164 175 178 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 160 + BICOMP + 107 - BICOMP - 144 + ICCARM + 97 - ICCARM - 33 + BICOMP + 180 203 185 164 201 208 1 202 - BICOMP - 33 + ICCARM + 180 203 185 164 201 208 1 202 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - ICCARM - 151 + BICOMP + 77 - BICOMP - 147 + ICCARM + 99 - ICCARM - 35 11 20 36 61 69 55 37 54 198 170 56 219 22 42 + BICOMP + 181 170 125 138 133 153 159 180 203 185 164 128 143 - BICOMP - 35 11 20 36 61 69 55 37 54 198 56 219 22 42 + ICCARM + 181 170 125 95 138 133 153 159 180 203 185 164 128 143 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_loader.c - ICCARM - 156 + BICOMP + 110 - BICOMP - 175 + ICCARM + 79 - ICCARM - 35 20 36 61 26 104 + BICOMP + 180 139 203 185 164 132 195 181 170 125 138 133 153 159 151 192 156 149 7 157 171 176 140 184 - BICOMP - 35 20 36 61 26 104 + ICCARM + 180 139 203 185 164 132 195 181 170 125 95 138 133 153 159 151 192 156 149 7 157 171 176 140 184 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - ICCARM - 166 + BICOMP + 90 - BICOMP - 188 + ICCARM + 98 - ICCARM - 37 54 198 170 56 219 22 42 35 11 190 199 1 + BICOMP + 180 203 185 164 165 205 - BICOMP - 37 54 198 56 219 22 42 35 11 190 199 1 + ICCARM + 180 203 185 164 165 205 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\d_output.c - ICCARM - 92 + BICOMP + 71 - BICOMP - 186 + ICCARM + 111 - ICCARM - 35 11 107 5 26 + BICOMP + 180 203 185 164 142 163 - BICOMP - 35 11 107 5 26 + ICCARM + 180 203 185 164 142 163 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_sound.c - ICCARM - 150 + BICOMP + 78 - BICOMP - 171 + ICCARM + 72 - ICCARM - 35 20 36 61 1 28 + BICOMP + 180 203 185 164 169 168 45 - BICOMP - 35 20 36 61 1 28 + ICCARM + 180 203 185 164 169 168 45 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\d_timer.c - ICCARM - 125 + BICOMP + 109 - BICOMP - 189 + ICCARM + 59 - ICCARM - 35 20 36 61 58 48 + BICOMP + 180 203 185 164 212 120 - BICOMP - 35 20 36 61 58 48 + ICCARM + 180 203 185 164 212 120 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\d_usb.c - ICCARM - 178 + BICOMP + 65 - BICOMP - 139 + ICCARM + 113 - ICCARM - 35 20 36 61 65 12 19 66 + BICOMP + 180 203 185 164 200 147 - BICOMP - 35 20 36 61 65 12 19 66 + ICCARM + 180 203 185 164 200 147 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\m_sched.c - ICCARM - 135 + BICOMP + 84 - BICOMP - 179 + ICCARM + 61 - ICCARM - 37 54 198 170 56 219 22 42 35 20 36 61 203 17 + BICOMP + 180 139 203 185 164 173 219 201 208 224 148 158 198 123 126 131 146 122 177 182 190 - BICOMP - 37 54 198 56 219 22 42 35 20 36 61 203 17 + ICCARM + 180 139 203 185 164 173 219 201 208 224 148 158 198 123 126 131 146 122 177 182 190 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_led.c ICCARM - 192 - - - BICOMP - 142 + 76 ICCARM - 35 11 20 36 61 218 77 37 54 198 170 56 219 22 42 2 73 8 27 62 43 46 57 16 13 - - - BICOMP - 35 11 20 36 61 218 77 37 54 198 56 219 22 42 2 73 8 27 62 43 46 57 16 13 + 180 139 32 43 34 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\d_led.c ICCARM - 137 - - - BICOMP - 165 + 62 ICCARM - 35 20 36 61 39 80 - - - BICOMP - 35 20 36 61 39 80 + 180 203 185 55 34 5 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\d_sensor.c ICCARM - 143 - - - BICOMP - 173 + 88 ICCARM - 35 20 36 61 41 60 - - - BICOMP - 35 20 36 61 41 60 + 180 203 185 55 51 39 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\c_motor.c ICCARM - 174 - - - BICOMP - 183 + 103 ICCARM - 35 20 36 61 53 52 98 - - - BICOMP - 35 20 36 61 53 52 98 + 180 139 41 54 49 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\c_sensor.c ICCARM - 153 - - - BICOMP - 141 + 104 ICCARM - 35 20 36 61 131 196 - - - BICOMP - 35 20 36 61 131 196 + 180 139 52 48 51 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c ICCARM - 146 + 64 + + + + $PROJ_DIR$\..\..\Source\d_motor.c + - BICOMP - 161 + ICCARM + 108 ICCARM - 35 20 36 61 67 6 + 180 203 185 55 49 50 + + + + $PROJ_DIR$\..\src\main.c + - BICOMP - 35 20 36 61 67 6 + ICCARM + 112 - + - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\main.c ICCARM - 127 + 112 + + + + $PROJ_DIR$\SrcIAR\Cstartup.s79 + - BICOMP - 162 + AARM + 106 + + + $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd - ICCARM - 35 11 20 36 61 30 81 65 12 107 5 40 83 199 200 215 18 182 47 34 74 + BILINK + 85 81 89 74 83 94 60 67 93 70 119 100 114 73 69 102 107 77 110 90 71 78 109 65 84 + + + + $PROJ_DIR$\..\Include\sam7s256.c + - BICOMP - 35 11 20 36 61 30 81 65 12 107 5 40 83 199 200 215 18 182 47 34 74 + ICCARM + 96 - + [MULTI_TOOL] diff --git a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.cspy.bat b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.cspy.bat index 74f8699..43f6a2d 100644 --- a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.cspy.bat +++ b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.cspy.bat @@ -22,11 +22,11 @@ @REM but they are listed at the end of this file for reference. -"C:\Program Files\IAR Systems\Embedded Workbench 4.0 LEGO\common\bin\cspybat" "C:\Program Files\IAR Systems\Embedded Workbench 4.0 LEGO\arm\bin\armproc.dll" "C:\Program Files\IAR Systems\Embedded Workbench 4.0 LEGO\arm\bin\armjlink.dll" %1 --plugin "C:\Program Files\IAR Systems\Embedded Workbench 4.0 LEGO\arm\bin\" --macro "D:\NXT\lms_nbcnxc_128\AT91SAM7S256\SAM7S256\Tools\SAM7.mac" --backend -B "--endian" "little" "--cpu" "ARM7TDMI" "--fpu" "None" "--proc_device_desc_file" "D:\NXT\lms_nbcnxc_128\AT91SAM7S256\SAM7S256\Tools\ioat91sam7s256.ddf" "--proc_driver" "jlink" "--jlink_connection" "USB:0" "--jlink_initial_speed" "32" +"C:\Program Files (x86)\IAR Systems\Embedded Workbench 4.0 LEGO\common\bin\cspybat" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 4.0 LEGO\arm\bin\armproc.dll" "C:\Program Files (x86)\IAR Systems\Embedded Workbench 4.0 LEGO\arm\bin\armjlink.dll" %1 --plugin "C:\Program Files (x86)\IAR Systems\Embedded Workbench 4.0 LEGO\arm\bin\" --macro "D:\NXT\lms_nbcnxc_128\AT91SAM7S256\SAM7S256\Tools\SAM7.mac" --backend -B "--endian" "little" "--cpu" "ARM7TDMI" "--fpu" "None" "--proc_device_desc_file" "D:\NXT\lms_nbcnxc_128\AT91SAM7S256\SAM7S256\Tools\ioat91sam7s256.ddf" "--proc_driver" "jlink" "--jlink_connection" "USB:0" "--jlink_initial_speed" "32" @REM Loaded plugins: @REM armlibsupport.dll -@REM C:\Program Files\IAR Systems\Embedded Workbench 4.0 LEGO\common\plugins\CodeCoverage\CodeCoverage.dll -@REM C:\Program Files\IAR Systems\Embedded Workbench 4.0 LEGO\common\plugins\Profiling\Profiling.dll -@REM C:\Program Files\IAR Systems\Embedded Workbench 4.0 LEGO\common\plugins\stack\stack.dll +@REM C:\Program Files (x86)\IAR Systems\Embedded Workbench 4.0 LEGO\common\plugins\CodeCoverage\CodeCoverage.dll +@REM C:\Program Files (x86)\IAR Systems\Embedded Workbench 4.0 LEGO\common\plugins\Profiling\Profiling.dll +@REM C:\Program Files (x86)\IAR Systems\Embedded Workbench 4.0 LEGO\common\plugins\stack\stack.dll diff --git a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt index cdf06a1..1ebaf1e 100644 --- a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt +++ b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt @@ -11,7 +11,7 @@ - 1563271307876 + 1233271307876 300Find-in-FilesDebug-Log1862724461 @@ -22,7 +22,7 @@ 45527 - 300Find-in-FilesBuild + 300BuildFind-in-Files @@ -32,7 +32,7 @@ - + TabID-32446-5425 @@ -40,24 +40,24 @@ Workspace - LMS_ARMLMS_ARM/c_cmd.cLMS_ARM/c_led.cLMS_ARM/d_bt.c + LMS_ARMLMS_ARM/c_led.c - 0TabID-25637-22042BuildBuildTabID-24384-30343Find in FilesFind-in-FilesTabID-7323-21632Debug LogDebug-Log0 + 0TabID-27191-10055BuildBuildTabID-29560-16542Find in FilesFind-in-Files1 - TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_cmd.c040061136031136030TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_comm.c033229270992725TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_cmd.iom03812834TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_loader.h00694700TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_ui.c08162117221172TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_cmd.h04461282912829TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_bt.c011124882488TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_bt.r02131623016230TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_hispeed.r00765765TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_bt.h0612611261TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_comm.h042107210800100000010000001 + TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_cmd.c096112721022721020TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_output.c0000TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_loader.c05597597TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_input.c02261189111904TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_comm.c0000TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_cmd.iom014761416145TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_bt.c0394834283460100000010000001 - iaridepm.enu1-2-2630223-2-20000142857750594-2-21681577-2-21579170100254020190000 + iaridepm.enu1-2-2463190-2-20000157119701357-2-21551224-2-212261571003273236802139935236802 diff --git a/AT91SAM7S256/Source/BtTest.inc b/AT91SAM7S256/Source/BtTest.inc index ff0de90..d2ab31d 100644 --- a/AT91SAM7S256/Source/BtTest.inc +++ b/AT91SAM7S256/Source/BtTest.inc @@ -4,7 +4,6 @@ #include "Test2.txt" //#define TESTPRG // If defined the test program will be included - extern void BtIo(void); const char BUILD_DATE[] = __DATE__; diff --git a/AT91SAM7S256/Source/cCmdWriteIOMapOffsetsFile.txt b/AT91SAM7S256/Source/cCmdWriteIOMapOffsetsFile.txt new file mode 100644 index 0000000..a317c79 --- /dev/null +++ b/AT91SAM7S256/Source/cCmdWriteIOMapOffsetsFile.txt @@ -0,0 +1,125 @@ +#if WRITE_IOMAP_OFFSETS +void cCmdWriteIOMapOffsetsFile() +{ + LOADER_STATUS LStatus; + UBYTE Handle; + ULONG BenchFileSize; + ULONG Length; + UBYTE Buffer[256]; + + //Remove old benchmark file, create a new one + strcpy((char *)Buffer, "offsets.txt"); + pMapLoader->pFunc(DELETE, Buffer, NULL, NULL); + BenchFileSize = 2048; + LStatus = pMapLoader->pFunc(OPENWRITEDATA, Buffer, NULL, &BenchFileSize); + + if (!LOADER_ERR(LStatus)) + { + //Write Benchmark file + Handle = LOADER_HANDLE(LStatus); + + //Header + sprintf((char *)Buffer, "%s Offsets\r\n", "Comm Module"); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "pFunc: %d\r\n", (ULONG)pMapComm->pFunc - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "pFunc2: %d\r\n", (ULONG)pMapComm->pFunc2 - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BtDeviceTable: %d\r\n", (ULONG)pMapComm->BtDeviceTable - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BtConnectTable: %d\r\n", (ULONG)pMapComm->BtConnectTable - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BrickData: %d\r\n", (ULONG)pMapComm->BrickData.Name - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BtInBuf: %d\r\n", (ULONG)pMapComm->BtInBuf.Buf - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BtOutBuf: %d\r\n", (ULONG)pMapComm->BtOutBuf.Buf - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "HsInBuf: %d\r\n", (ULONG)pMapComm->HsInBuf.Buf - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "HsOutBuf: %d\r\n", (ULONG)pMapComm->HsOutBuf.Buf - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "UsbInBuf: %d\r\n", (ULONG)pMapComm->UsbInBuf.Buf - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "UsbOutBuf: %d\r\n", (ULONG)pMapComm->UsbOutBuf.Buf - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "UsbPollBuf: %d\r\n", (ULONG)pMapComm->UsbPollBuf.Buf - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BtDeviceCnt: %d\r\n", (ULONG)&(pMapComm->BtDeviceCnt) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BtDeviceNameCnt: %d\r\n", (ULONG)&(pMapComm->BtDeviceNameCnt) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "HsFlags: %d\r\n", (ULONG)&(pMapComm->HsFlags) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "HsSpeed: %d\r\n", (ULONG)&(pMapComm->HsSpeed) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "HsState: %d\r\n", (ULONG)&(pMapComm->HsState) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "UsbState: %d\r\n", (ULONG)&(pMapComm->UsbState) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "HsMode: %d\r\n", (ULONG)&(pMapComm->HsMode) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BtDataMode: %d\r\n", (ULONG)&(pMapComm->BtDataMode) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "HsDataMode: %d\r\n", (ULONG)&(pMapComm->HsDataMode) - (ULONG)pMapComm); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "HsDataMode = %d\r\n", pMapComm->HsDataMode); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); + + sprintf((char *)Buffer, "BtDataMode = %d\r\n", pMapComm->BtDataMode); + Length = strlen((char *)Buffer); + LStatus = pMapLoader->pFunc(WRITE, &Handle, Buffer, &Length); +/* + + UBYTE Spare1; +*/ + //close file + LStatus = pMapLoader->pFunc(CLOSE, &Handle, NULL, NULL); + } +} +#endif diff --git a/AT91SAM7S256/Source/c_cmd.c b/AT91SAM7S256/Source/c_cmd.c index 4b25362..3fc28e4 100644 --- a/AT91SAM7S256/Source/c_cmd.c +++ b/AT91SAM7S256/Source/c_cmd.c @@ -1,11 +1,11 @@ // // Date init 14.12.2004 // -// Revision date $Date: 17-02-09 7:30 $ +// Revision date $Date: 26-02-10 11:38 $ // // Filename $Workfile:: c_cmd.c $ // -// Version $Revision: 13 $ +// Version $Revision: 15 $ // // Archive $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/c_cmd. $ // @@ -256,7 +256,7 @@ static pSysCall SysCallFuncs[SYSCALL_COUNT] = cCmdWrapDrawEllipse, cCmdWrapDrawFont, // 95 cCmdWrapMemoryManager, - cCmdWrapUndefinedSysCall, + cCmdWrapReadLastResponse, cCmdWrapUndefinedSysCall, cCmdWrapUndefinedSysCall // 99 --> 100 system call slots @@ -409,6 +409,100 @@ UBYTE cCmdBTGetDeviceType(UBYTE *pCOD) return (Result); } +UBYTE CMD_RESPONSE_LENGTH[255] = +{ + 3, // DCStartProgram (x00) + 3, // DCStopProgram (x01) + 3, // DCPlaySoundFile (x02) + 3, // DCPlayTone (x03) + 3, // DCSetOutputState (x04) + 3, // DCSetInputMode (x05) + 25, // DCGetOutputState (x06) + 16, // DCGetInputValues (x07) + 3, // DCResetInputScaledValue (x08) + 3, // DCMessageWrite (x09) + 3, // DCResetMotorPosition (x0a) + 5, // DCGetBatteryLevel (x0b) + 3, // DCStopSoundPlayback (x0c) + 7, // DCKeepAlive (x0d) + 4, // DCLSGetStatus (x0e) + 3, // DCLSWrite (x0f) + 20, // DCLSRead (x10) + 23, // DCGetCurrentProgramName (x11) + 0, // DCGetButtonState (not implemented) (x12) + 64, // DCMessageRead (x13) + 0, // DCRESERVED1 (x14) + 0, // DCRESERVED2 (x15) + 0, // DCRESERVED3 (x16) + 0, // DCRESERVED4 (x17) + 0, // DCRESERVED5 (x18) + 64, // DCDatalogRead (1.28+) (x19) + 3, // DCDatalogSetTimes (1.28+) (x1a) + 4, // DCBTGetContactCount (1.28+) (x1b) + 21, // DCBTGetContactName (1.28+) (x1c) + 4, // DCBTGetConnCount (1.28+) (x1d) + 21, // DCBTGetConnName (1.28+) (x1e) + 3, // DCSetProperty(1.28+) (x1f) + 7, // DCGetProperty (1.28+) (x20) + 3, // DCUpdateResetCount (1.28+) (x21) + 7, // RC_SET_VM_STATE (enhanced only) (x22) + 7, // RC_GET_VM_STATE (enhanced only) (x23) + 15, // RC_SET_BREAKPOINTS (enhanced only) (x24) + 15, // RC_GET_BREAKPOINTS (enhanced only) (x25) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (x26-x2f) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (x30-x3f) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (x40-x4f) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (x50-x5f) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (x60-x6f) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (x70-x7f) + 8, // OPENREAD = 0x80, + 4, // OPENWRITE = 0x81, + 64, // READ = 0x82, (actually is a variable length response) + 6, // WRITE = 0x83, + 4, // CLOSE = 0x84, + 23, // DELETE = 0x85, + 28, // FINDFIRST = 0x86, + 28, // FINDNEXT = 0x87, + 7, // VERSIONS = 0x88, + 4, // OPENWRITELINEAR = 0x89, + 7, // OPENREADLINEAR = 0x8A, (not actually implemented) + 4, // OPENWRITEDATA = 0x8B, + 8, // OPENAPPENDDATA = 0x8C, + 4, // CROPDATAFILE = 0x8D, /* New cmd for datalogging */ + 0, // XXXXXXXXXXXXXX = 0x8E, + 0, // XXXXXXXXXXXXXX = 0x8F, + 34, // FINDFIRSTMODULE = 0x90, + 34, // FINDNEXTMODULE = 0x91, + 4, // CLOSEMODHANDLE = 0x92, + 0, // XXXXXXXXXXXXXX = 0x93, + 64, // IOMAPREAD = 0x94, (actually is a variable length response) + 9, // IOMAPWRITE = 0x95, + 0, // XXXXXXXXXXXXXX = 0x96, + 7, // BOOTCMD = 0x97, (can only be executed via USB) + 3, // SETBRICKNAME = 0x98, + 0, // XXXXXXXXXXXXXX = 0x99, + 10, // BTGETADR = 0x9A, + 33, // DEVICEINFO = 0x9B, + 0, // XXXXXXXXXXXXXX = 0x9C, + 0, // XXXXXXXXXXXXXX = 0x9D, + 0, // XXXXXXXXXXXXXX = 0x9E, + 0, // XXXXXXXXXXXXXX = 0x9F, + 3, // DELETEUSERFLASH = 0xA0, + 5, // POLLCMDLEN = 0xA1, + 64, // POLLCMD = 0xA2, + 44, // RENAMEFILE = 0xA3, + 3, // BTFACTORYRESET = 0xA4, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (xA5-xAF) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (xB0-xBf) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (xC0-xCf) + 0, // RESIZEDATAFILE = 0xD0, + 0, // SEEKFROMSTART = 0xD1, + 0, // SEEKFROMCURRENT = 0xD2, + 0, // SEEKFROMEND = 0xD3 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (xD4-xDF) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 // (xF0-xFF) +}; + //cCmdHandleRemoteCommands is the registered handler for "direct" command protocol packets //It is only intended to be called via c_comm's main protocol handler UWORD cCmdHandleRemoteCommands(UBYTE * pInBuf, UBYTE * pOutBuf, UBYTE * pLen) @@ -1226,12 +1320,15 @@ UWORD cCmdHandleRemoteCommands(UBYTE * pInBuf, UBYTE * pOutBuf, UBYTE * pLen) //If telegram doesn't check out, do nothing. No errors are ever returned for reply telegrams. } - break; + // fall through to the default case +// break; default: { //Unhandled reply telegram. Do nothing. //!!! Could/should stash unhandled/all replies somewhere so a syscall could read them + VarsCmd.LastResponseLength = CMD_RESPONSE_LENGTH[pInBuf[0]]; + memcpy((PSZ)VarsCmd.LastResponseBuffer, (PSZ)(&pInBuf[0]), VarsCmd.LastResponseLength-1); } break; }; @@ -1418,10 +1515,9 @@ void cCmdCtrl(void) IOMapCmd.ProgStatus = PROG_OK; } } - else if (Status == CLUMP_SUSPEND || Status == CLUMP_DONE) { + else if (Status == CLUMP_SUSPEND || Status == CLUMP_DONE) Continue = TRUE; // queue isn't empty, didn't timeout //Only rotate RunQ on a "normal" finish, i.e. no error, clump end, or breakout request - } else if (Status == ROTATE_QUEUE) { // done and suspend do their own cCmdRotateQ(); Continue= TRUE; @@ -1434,7 +1530,6 @@ void cCmdCtrl(void) { Continue = FALSE; VarsCmd.VMState = VM_RESET1; -// IOMapCmd.ProgStatus = PROG_ERROR; IOMapCmd.ProgStatus = Status; } else if (Status == STOP_REQ) @@ -1476,7 +1571,6 @@ void cCmdCtrl(void) //2. Proceed to VM_RESET1 (some unneeded work, yes, but preserves contract with UI if (IS_ERR(Status)) { -// IOMapCmd.ProgStatus = PROG_ERROR; IOMapCmd.ProgStatus = Status; VarsCmd.VMState = VM_RESET1; } @@ -2101,6 +2195,9 @@ NXT_STATUS cCmdActivateProgram(UBYTE * pFileName) VarsCmd.Debugging = FALSE; VarsCmd.PauseClump = NOT_A_CLUMP; VarsCmd.PausePC = 0xFFFF; + // restore default data mode values + pMapComm->BtDataMode = DATA_MODE_NXT|DATA_MODE_UPDATE; + pMapComm->HsDataMode = DATA_MODE_RAW|DATA_MODE_UPDATE; return (Status); } @@ -2151,8 +2248,7 @@ void cCmdDeactivateProgram() tmp = i; //Close file if (*(VarsCmd.FileHandleTable[i]) != 0) - pMapLoader->pFunc(CLOSE, &tmp, NULL, NULL); -// pMapLoader->pFunc(CROPDATAFILE, &tmp, NULL, NULL); + pMapLoader->pFunc(CROPDATAFILE, &tmp, NULL, NULL); /*CLOSE*/ } //Clear FileHandleTable @@ -4469,33 +4565,6 @@ NXT_STATUS cCmdInterpFromClump() pInstr = pClumpRec->PC; // abs lastClumpInstr= pClumpRec->CodeEnd; // abs -/* - // are we free running and reach a breakpoint? - if (VarsCmd.VMState == VM_RUN_FREE) - { - CLUMP_BREAK_REC* pBreakpoints = pClumpRec->Breakpoints; - for(int j = 0; j < MAX_BREAKPOINTS; j++) - { - if (pBreakpoints[j].Enabled && - (pBreakpoints[j].Location == (CODE_INDEX)(pClumpRec->PC-pClumpRec->CodeStart))) - { - VarsCmd.VMState = VM_RUN_PAUSE; - return BREAKOUT_REQ; - } - } - // auto pause at clump == pauseClump and relative PC = pausePC - if ((Clump == VarsCmd.PauseClump) && - ((CODE_INDEX)(pClumpRec->PC-pClumpRec->CodeStart) == VarsCmd.PausePC)) - { - VarsCmd.VMState = VM_RUN_PAUSE; - // turn off the auto pause flags - VarsCmd.PauseClump = NOT_A_CLUMP; - VarsCmd.PausePC = 0xFFFF; - return BREAKOUT_REQ; - } - } -*/ - if(VarsCmd.VMState == VM_RUN_FREE) i = pClumpRec->Priority; else @@ -5056,7 +5125,11 @@ NXT_STATUS cCmdInterpUnop2(CODE_WORD * const pCode) if (TypeCode2 == TC_FLOAT) { FltArgVal2 = cCmdGetFloatValFromDataArg(Arg2, 0); - Count = sprintf(Buffer, "%.4f", FltArgVal2); + if ((FltArgVal2 > (float)99999999999.9999)||(FltArgVal2 < (float)-9999999999.9999)){ // these are the widest %.4f numbers that will fit on display + Count = sprintf(Buffer, "%.6g", FltArgVal2); + } + else + Count = sprintf(Buffer, "%.4f", FltArgVal2); Count++; //add room for null terminator // remove trailing zeros while (Buffer[Count-2] == 0x30) { @@ -5984,7 +6057,7 @@ ULONG cCmdBinop(CODE_WORD const Code, ULONG LeftOp, ULONG RightOp, TYPE_CODE Lef case OP_XOR: { - return ((LeftOp | RightOp) & (~(LeftOp & RightOp))); // LeftOp ^ RightOp + return ((LeftOp | RightOp) & (~(LeftOp & RightOp))); } case OP_CMP: @@ -6229,7 +6302,7 @@ NXT_STATUS cCmdMove(DATA_ARG Arg1, DATA_ARG Arg2) Status= NO_ERR; } } - else if(tc1 == TC_FLOAT && tc2 == TC_FLOAT) { + else if(tc1 == TC_FLOAT && tc2 == TC_FLOAT) { // may also need to speed up float to int and int to float conversions moveFloat++; pArg1= VarsCmd.pDataspace + TOC1Ptr->DSOffset; pArg2= VarsCmd.pDataspace + TOC2Ptr->DSOffset; @@ -9539,6 +9612,47 @@ NXT_STATUS cCmdWrapMemoryManager(UBYTE * ArgV[]) return (NO_ERR); } +//cCmdWrapReadLastResponse +//ArgV[0]: (return) Status byte, SBYTE +//ArgV[1]: Clear?, UBYTE (true or false) +//ArgV[2]: Length, UBYTE out +//ArgV[3]: Command, UBYTE out +//ArgV[4]: Buffer, out +NXT_STATUS cCmdWrapReadLastResponse(UBYTE * ArgV[]) +{ + SBYTE * pReturnVal = (SBYTE*)(ArgV[0]); + UWORD bufLen = 0; + if (VarsCmd.LastResponseLength > 0) + bufLen = VarsCmd.LastResponseLength-2; + + //Resolve array arguments + // output buffer + DV_INDEX DVIndex = *(DV_INDEX *)(ArgV[4]); + //Size Buffer to Length + NXT_STATUS Status = cCmdDVArrayAlloc(DVIndex, bufLen); + if (IS_ERR(Status)) + return Status; + UBYTE* pBuf = cCmdDVPtr(DVIndex); + ArgV[4] = pBuf; + *(ArgV[2]) = bufLen; // Length + *pReturnVal = NO_ERR; + + if (bufLen > 0) + { + memset(pBuf, 0, bufLen); + memcpy(pBuf, (PSZ)&(VarsCmd.LastResponseBuffer[2]), bufLen-1); + *pReturnVal = VarsCmd.LastResponseBuffer[1]; + *(ArgV[3]) = VarsCmd.LastResponseBuffer[0]; + } + // clear? + if (*(ArgV[1])) { + VarsCmd.LastResponseLength = 0; + memset(VarsCmd.LastResponseBuffer, 0, 64); + } + + return (NO_ERR); +} + NXT_STATUS cCmdWrapUndefinedSysCall(UBYTE * ArgV[]) { return (NO_ERR); diff --git a/AT91SAM7S256/Source/c_cmd.h b/AT91SAM7S256/Source/c_cmd.h index 489e0cc..b23e9f6 100644 --- a/AT91SAM7S256/Source/c_cmd.h +++ b/AT91SAM7S256/Source/c_cmd.h @@ -63,7 +63,7 @@ void cCmdExit(void); #define WRITE_IOMAP_OFFSETS 0 #if WRITE_IOMAP_OFFSETS -void cCmdWriteIOMapOffsetsFile(); +void cCmdWriteIOMapOffsetsFile(); #endif // @@ -566,6 +566,10 @@ typedef struct UBYTE PauseClump; CODE_INDEX PausePC; + // add a buffer for storing the last response raw content (64 bytes) + UBYTE LastResponseBuffer[64]; + UBYTE LastResponseLength; + #if VM_BENCHMARK ULONG InstrCount; ULONG Average; @@ -575,10 +579,8 @@ typedef struct ULONG CompactionCount; ULONG LastCompactionTick; ULONG MaxCompactionTime; - ULONG CmdCtrlOverTimeCnt; - ULONG MaxCmdCtrlOverTimeLen; - ULONG OpcodeBenchmarks[OPCODE_COUNT][3]; - ULONG SyscallBenchmarks[SYSCALL_COUNT][3]; + ULONG OpcodeBenchmarks[OPCODE_COUNT][4]; + ULONG SyscallBenchmarks[SYSCALL_COUNT][4]; UBYTE Buffer[256]; #endif @@ -906,6 +908,7 @@ NXT_STATUS cCmdWrapDrawPolygon(UBYTE * ArgV[]); NXT_STATUS cCmdWrapDrawEllipse(UBYTE * ArgV[]); NXT_STATUS cCmdWrapDrawFont(UBYTE * ArgV[]); NXT_STATUS cCmdWrapMemoryManager(UBYTE * ArgV[]); +NXT_STATUS cCmdWrapReadLastResponse(UBYTE * ArgV[]); NXT_STATUS cCmdWrapUndefinedSysCall(UBYTE * ArgV[]); diff --git a/AT91SAM7S256/Source/c_cmd.iom b/AT91SAM7S256/Source/c_cmd.iom index 09a6477..820f01d 100644 --- a/AT91SAM7S256/Source/c_cmd.iom +++ b/AT91SAM7S256/Source/c_cmd.iom @@ -168,17 +168,7 @@ typedef SBYTE PROGRAM_STATUS; #define PROG_ERROR 0x03 #define PROG_ABORT 0x04 #define PROG_RESET 0x05 -/* -typedef enum -{ - PROG_IDLE, - PROG_OK, - PROG_RUNNING, - PROG_ERROR, - PROG_ABORT, - PROG_RESET -} PROGRAM_STATUS; -*/ + //Maximum size of memory pool, in bytes //!!! Code assumes this value is evenly divisible by 4! #define POOL_MAX_SIZE 32768 diff --git a/AT91SAM7S256/Source/c_cmd_drawing.inc b/AT91SAM7S256/Source/c_cmd_drawing.inc index 9a62c12..41e405a 100644 --- a/AT91SAM7S256/Source/c_cmd_drawing.inc +++ b/AT91SAM7S256/Source/c_cmd_drawing.inc @@ -1709,7 +1709,7 @@ void cCmdDrawString(UBYTE *pString, ULONG X, ULONG Y, UBYTE InvertMode, UBYTE Lo //------------------------------------------------------------------ // cCmdRestoreDefaultScreen - Restore to Default 'Running' screen -__ramfunc void cCmdRestoreDefaultScreen(void) +void cCmdRestoreDefaultScreen(void) { //If this program has taken over the display, reset it for the UI if (VarsCmd.DirtyDisplay == TRUE) diff --git a/AT91SAM7S256/Source/c_comm.c b/AT91SAM7S256/Source/c_comm.c index f550ca3..1c9db04 100644 --- a/AT91SAM7S256/Source/c_comm.c +++ b/AT91SAM7S256/Source/c_comm.c @@ -62,11 +62,11 @@ enum dBtClearArm7CmdSignal();\ dBtInitReceive(VarsComm.BtModuleInBuf.Buf, (UBYTE)CMD_MODE, FALSE); -#define SETBtDataState(_m) IOMapComm.BtInBuf.InPtr = 0;\ - VarsComm.BtState = _m;\ +#define SETBtDataState IOMapComm.BtInBuf.InPtr = 0;\ + VarsComm.BtState = BT_ARM_DATA_MODE;\ dBtClearTimeOut(); /* stop cmd timeout because in datamode */\ dBtSetArm7CmdSignal();\ - dBtInitReceive(VarsComm.BtModuleInBuf.Buf, (UBYTE)STREAM_MODE, (_m == BT_ARM_DATA_MODE ? FALSE : TRUE)); + dBtInitReceive(VarsComm.BtModuleInBuf.Buf, (UBYTE)STREAM_MODE, IOMapComm.BtDataMode != DATA_MODE_NXT); #define SETBtOff VarsComm.BtState = BT_ARM_OFF;\ dBtSetBcResetPinLow() @@ -160,9 +160,10 @@ void cCommInit(void* pHeader) } IOMapComm.BtDeviceCnt = 0; IOMapComm.BrickData.BtStateStatus = 0; - IOMapComm.HsSpeed = HS_BAUD_921600; - IOMapComm.HsMode = HS_MODE_8N1; - IOMapComm.BtState = BT_ARM_DATA_MODE; + IOMapComm.HsSpeed = HS_BAUD_921600; + IOMapComm.HsMode = HS_MODE_8N1; + IOMapComm.BtDataMode = DATA_MODE_NXT; + IOMapComm.HsDataMode = DATA_MODE_RAW; cCommClrConnTable(); @@ -180,7 +181,18 @@ void cCommInit(void* pHeader) void cCommCtrl(void) { - + // remove the update flag from the hi-speed data mode field + IOMapComm.HsDataMode &= ~DATA_MODE_UPDATE; + + if (IOMapComm.BtDataMode & DATA_MODE_UPDATE) + { + // remove the update flag from the data mode field + IOMapComm.BtDataMode &= ~DATA_MODE_UPDATE; + // re-initialize the receiver (only changing the NoLengthBytes param) + + dBtInitReceive(VarsComm.BtModuleInBuf.Buf, (UBYTE)((VarsComm.BtState == BT_ARM_CMD_MODE) ? CMD_MODE : STREAM_MODE), IOMapComm.BtDataMode != DATA_MODE_NXT); + } + if (FALSE == cCommReceivedBtData()) { @@ -206,7 +218,7 @@ void cCommCtrl(void) switch (VarsComm.BtState) { - /* Bluetooth device can either be in CMD, DATA, STREAM or OFF state at top level */ + /* Bluetooth device can either be in CMD, DATA or OFF state at top level */ case BT_ARM_OFF: { } @@ -215,14 +227,12 @@ void cCommCtrl(void) { if (VarsComm.BtBcPinLevel) { - SETBtDataState(IOMapComm.BtState); + SETBtDataState; } } break; case BT_ARM_DATA_MODE: - case BT_ARM_GPS_MODE: - case BT_ARM_RAW_MODE: { if (!(VarsComm.BtBcPinLevel)) { @@ -232,8 +242,8 @@ void cCommCtrl(void) break; } } - // don't overwrite this byte when we are in GPS or RAW mode - if (VarsComm.BtState != BT_ARM_GPS_MODE && VarsComm.BtState != BT_ARM_RAW_MODE) + // don't overwrite this byte when we are in DATA GPS or RAW mode + if ((VarsComm.BtState == BT_ARM_CMD_MODE) || (IOMapComm.BtDataMode == DATA_MODE_NXT)) IOMapComm.BtInBuf.Buf[BT_CMD_BYTE] = 0; @@ -427,8 +437,10 @@ UWORD cCommInterprete(UBYTE *pInBuf, UBYTE *pOutBuf, UBYTE *pLength, UBYTE C case REPLY_CMD: { - /* If this is a reply to a direct command opcode, pRCHandler will handle it */ - if (pInBuf[1] < NUM_RC_OPCODES) + // in the enhanced firmware all replies (system or direct) go to the RC Handler function + // since it stores the last response in VarsCmd.LastResponseBuffer field +// /* If this is a reply to a direct command opcode, pRCHandler will handle it */ +// if (pInBuf[1] < NUM_RC_OPCODES) pMapCmd->pRCHandler(&(pInBuf[0]), NULL, pLength); /* No Reply ever required on REPLY_CMD messages */ @@ -478,6 +490,9 @@ UWORD cCommInterprete(UBYTE *pInBuf, UBYTE *pOutBuf, UBYTE *pLength, UBYTE C break; case REPLY_CMD: { + // in the enhanced firmware all replies (system or direct) go to the RC Handler function + // since it stores the last response in VarsCmd.LastResponseBuffer field + pMapCmd->pRCHandler(&(pInBuf[0]), NULL, pLength); } break; default: @@ -671,13 +686,19 @@ UWORD cCommInterpreteCmd(UBYTE Cmd, UBYTE *pInBuf, UBYTE *pOutBuf, UBYTE *pL Length = FileLength; /* Here test for channel - USB can only handle a 64 byte return (- wrapping )*/ - if (CmdBit & USB_CMD_READY) + if ((CmdBit & BT_CMD_READY) != BT_CMD_READY) { - if (FileLength > (SIZE_OF_USBBUF - 6)) + // USB or HS + UBYTE bufSize; + if (CmdBit & USB_CMD_READY) + bufSize = SIZE_OF_USBBUF; + else + bufSize = SIZE_OF_HSBUF; + if (FileLength > (bufSize - 6)) { /* Buffer cannot hold the requested data adjust to buffer size */ - FileLength = (SIZE_OF_USBBUF - 6); + FileLength = (bufSize - 6); } *pLength = FileLength + 4; Status = pMapLoader->pFunc(READ, &pInBuf[1], &pOutBuf[4], &FileLength); @@ -890,13 +911,18 @@ UWORD cCommInterpreteCmd(UBYTE Cmd, UBYTE *pInBuf, UBYTE *pOutBuf, UBYTE *pL FileLength <<= 8; FileLength |= pInBuf[7]; - if (CmdBit & USB_CMD_READY) + if (!(CmdBit & BT_CMD_READY)) { + UBYTE bufSize; + if (CmdBit & USB_CMD_READY) + bufSize = SIZE_OF_USBBUF; + else + bufSize = SIZE_OF_HSBUF; - /* test for USB buffer overrun */ - if (FileLength > (SIZE_OF_USBBUF - 9)) + /* test for USB or HS buffer overrun */ + if (FileLength > (bufSize - 9)) { - FileLength = SIZE_OF_USBBUF - 9; + FileLength = bufSize - 9; } } else @@ -1097,10 +1123,14 @@ UWORD cCommInterpreteCmd(UBYTE Cmd, UBYTE *pInBuf, UBYTE *pOutBuf, UBYTE *pL { MaxBufData = (SIZE_OF_USBDATA - 5); /* Substract wrapping */ } - else + else if (CmdBit & BT_CMD_READY) { MaxBufData = (SIZE_OF_BTBUF - 7); /* Substract wrapping + length bytes for BT*/ } + else // HS_CMD_READY + { + MaxBufData = (SIZE_OF_HSBUF - 5); /* Substract wrapping */ + } if (0x00 == pInBuf[1]) { @@ -1157,12 +1187,23 @@ UWORD cCommInterpreteCmd(UBYTE Cmd, UBYTE *pInBuf, UBYTE *pOutBuf, UBYTE *pL (*pLength) += 3; /* Add 3 bytes for the status byte, length byte and Buf no */ } break; + + case RENAMEFILE: + { + Status = pMapLoader->pFunc(RENAMEFILE, &pInBuf[1], &pInBuf[21], &FileLength); + pOutBuf[0] = LOADER_ERR_BYTE(Status); + pOutBuf[1] = LOADER_HANDLE(Status); + cCommCopyFileName(&pOutBuf[2], &pInBuf[1]); + cCommCopyFileName(&pOutBuf[22], &pInBuf[21]); + *pLength = 42; + } + break; case BTFACTORYRESET: { UWORD RtnVal; - if (CmdBit & USB_CMD_READY) + if ((CmdBit & USB_CMD_READY) || (CmdBit & HS_CMD_READY)) { if (SUCCESS == cCommReq(FACTORYRESET, 0, 0, 0, NULL, &RtnVal)) { @@ -1202,7 +1243,7 @@ UWORD cCommReceivedBtData(void) UWORD BytesToGo; UWORD RtnVal; - RtnVal = dBtReceivedData(&NumberOfBytes, &BytesToGo); + RtnVal = dBtReceivedData(&NumberOfBytes, &BytesToGo, IOMapComm.BtDataMode != DATA_MODE_NXT); if (TRUE == RtnVal) { @@ -1226,9 +1267,9 @@ UWORD cCommReceivedBtData(void) /* ActiveUpdate has to be idle because BC4 can send stream data even if CMD */ /* mode has been requested - dont try to interprete the data */ /* VarsComm.CmdSwitchCnt != 0 if a transition to Cmd mode is in process */ - if (0 == VarsComm.CmdSwitchCnt) + if ((VarsComm.BtState == BT_ARM_DATA_MODE) && (0 == VarsComm.CmdSwitchCnt)) { - if (VarsComm.BtState == BT_ARM_DATA_MODE) + if (IOMapComm.BtDataMode == DATA_MODE_NXT) { /* Move the inptr ahead */ @@ -1240,20 +1281,20 @@ UWORD cCommReceivedBtData(void) /* call the data stream interpreter */ cCommInterprete(IOMapComm.BtInBuf.Buf, IOMapComm.BtOutBuf.Buf, &(IOMapComm.BtOutBuf.InPtr), (UBYTE) BT_CMD_READY, BytesToGo); - /* if there is a reply to be sent then send it */ + /* if there is a reply to be send then send it */ if (IOMapComm.BtOutBuf.InPtr) { dBtSendMsg(IOMapComm.BtOutBuf.Buf, IOMapComm.BtOutBuf.InPtr, IOMapComm.BtOutBuf.InPtr); IOMapComm.BtOutBuf.InPtr = 0; } } - else if (VarsComm.BtState == BT_ARM_GPS_MODE) + else if (IOMapComm.BtDataMode == DATA_MODE_GPS) { /* Move the inptr ahead */ IOMapComm.BtInBuf.InPtr = NumberOfBytes; // interpret GPS sentence? } - else if (VarsComm.BtState == BT_ARM_RAW_MODE) + else if (IOMapComm.BtDataMode == DATA_MODE_RAW) { /* Move the inptr ahead */ IOMapComm.BtInBuf.InPtr = NumberOfBytes; @@ -1470,18 +1511,45 @@ void cCommReceivedHiSpeedData(void) if (NumberOfBytes != 0) { - for (Tmp = 0; Tmp < NumberOfBytes; Tmp++) + if (IOMapComm.HsDataMode != DATA_MODE_NXT) { - IOMapComm.HsInBuf.Buf[IOMapComm.HsInBuf.InPtr] = VarsComm.HsModuleInBuf.Buf[Tmp]; - IOMapComm.HsInBuf.InPtr++; - if (IOMapComm.HsInBuf.InPtr > (SIZE_OF_HSBUF - 1)) + // this is the normal way to handle incoming hi-speed data + for (Tmp = 0; Tmp < NumberOfBytes; Tmp++) { - IOMapComm.HsInBuf.InPtr = 0; + IOMapComm.HsInBuf.Buf[IOMapComm.HsInBuf.InPtr] = VarsComm.HsModuleInBuf.Buf[Tmp]; + IOMapComm.HsInBuf.InPtr++; + if (IOMapComm.HsInBuf.InPtr > (SIZE_OF_HSBUF - 1)) + { + IOMapComm.HsInBuf.InPtr = 0; + } + VarsComm.HsModuleInBuf.Buf[Tmp] = 0; } - VarsComm.HsModuleInBuf.Buf[Tmp] = 0; - } /* Now new data is available from the HIGH SPEED port ! */ + } + else + { + // receiving hi-speed data in NXT mode + /* Copy the bytes into the IOMapBuffer */ + memcpy((IOMapComm.HsInBuf.Buf), (VarsComm.HsModuleInBuf.Buf), NumberOfBytes); + + + /* Move the inptr ahead */ + IOMapComm.HsInBuf.InPtr = NumberOfBytes; + + /* using the outbuf inptr in order to get the number of bytes in the return answer at the right place*/ + IOMapComm.HsOutBuf.InPtr = NumberOfBytes; + + /* call the data stream interpreter */ + cCommInterprete(IOMapComm.HsInBuf.Buf, IOMapComm.HsOutBuf.Buf, &(IOMapComm.HsOutBuf.InPtr), (UBYTE) HS_CMD_READY, NumberOfBytes); + + /* if there is a reply to be sent then send it */ + if (IOMapComm.HsOutBuf.InPtr) + { + dHiSpeedSendData(IOMapComm.HsOutBuf.Buf, IOMapComm.HsOutBuf.InPtr); + IOMapComm.HsOutBuf.InPtr = 0; + } + } } } @@ -1857,7 +1925,7 @@ void cCommUpdateBt(void) { IOMapComm.BtConnectTable[(VarsComm.BtUpdateDataConnectNr & ~0x80)].StreamStatus = 1; *(VarsComm.pRetVal) = SUCCESS; - SETBtDataState(IOMapComm.BtState); + SETBtDataState; SETBtStateIdle; } } @@ -2653,7 +2721,7 @@ void cCommUpdateBt(void) { IOMapComm.BtConnectTable[0].StreamStatus = 1; *(VarsComm.pRetVal) = SUCCESS; - SETBtDataState(IOMapComm.BtState); + SETBtDataState; SETBtStateIdle; } } @@ -3335,7 +3403,7 @@ void cCommsOpenStream(UBYTE *pNextState) { if (VarsComm.BtBcPinLevel) { - SETBtDataState(IOMapComm.BtState); + SETBtDataState; IOMapComm.BtConnectTable[VarsComm.BtCmdData.ParamTwo].StreamStatus = 1; VarsComm.StreamStateCnt = 0; (*pNextState)++; diff --git a/AT91SAM7S256/Source/c_comm.iom b/AT91SAM7S256/Source/c_comm.iom index 0f6648b..98edff7 100644 --- a/AT91SAM7S256/Source/c_comm.iom +++ b/AT91SAM7S256/Source/c_comm.iom @@ -38,10 +38,15 @@ enum BT_ARM_OFF, BT_ARM_CMD_MODE, BT_ARM_DATA_MODE, - BT_ARM_GPS_MODE, - BT_ARM_RAW_MODE }; +// Constants refering to BtDataMode and HsDataMode +#define DATA_MODE_NXT 0x00 +#define DATA_MODE_GPS 0x01 +#define DATA_MODE_RAW 0x02 +#define DATA_MODE_MASK 0x07 +#define DATA_MODE_UPDATE 0x08 + //Constant reffering to BtStateStatus #define BT_BRICK_VISIBILITY 0x01 #define BT_BRICK_PORT_OPEN 0x02 @@ -267,11 +272,12 @@ typedef struct UBYTE HsState; UBYTE UsbState; + UBYTE Spare1; // fill the vacant byte that would otherwise be here UWORD HsMode; - UBYTE BtState; // off, cmd, data, gps, raw - UBYTE Unused1; + UBYTE BtDataMode; // nxt, gps, raw + UBYTE HsDataMode; // nxt, gps, raw }IOMAPCOMM; diff --git a/AT91SAM7S256/Source/c_display.c b/AT91SAM7S256/Source/c_display.c index 0c6f1b2..1732667 100644 --- a/AT91SAM7S256/Source/c_display.c +++ b/AT91SAM7S256/Source/c_display.c @@ -336,8 +336,7 @@ void cDisplayLineX(UBYTE X1, UBYTE X2, UBYTE Y, UBYTE PixelMode) M = 1 << (Y % 8); Y >>= 3; - - for (X=X1; X<=X2; X++) + for (X = X1;X <= X2;X++) { switch (PixelMode) { @@ -461,6 +460,7 @@ void cDisplayFillScreen(SCREEN_CORDINATE *pCord, UBYTE PixelMode) } } + void cDisplayDraw(UBYTE Cmd,UBYTE PixelMode,UBYTE X1,UBYTE Y1,UBYTE X2,UBYTE Y2) { SCREEN_CORDINATE Coord; diff --git a/AT91SAM7S256/Source/c_input.c b/AT91SAM7S256/Source/c_input.c index 2786326..4c4dc01 100644 --- a/AT91SAM7S256/Source/c_input.c +++ b/AT91SAM7S256/Source/c_input.c @@ -2,11 +2,11 @@ // // Date init 14.12.2004 // -// Revision date $Date:: 3/21/09 10:31a $ +// Revision date $Date:: 19-03-10 12:36 $ // // Filename $Workfile:: c_input.c $ // -// Version $Revision:: 39 $ +// Version $Revision:: 40 $ // // Archive $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/c_inpu $ // @@ -263,9 +263,12 @@ void cInputCtrl(void) /* A type change has been carried out earlier - waiting for valid data */ /* The color sensor requires special startup sequence with communication */ - if ((sType == COLORFULL) || (sType == COLORRED) || - (sType == COLORGREEN)|| (sType == COLORBLUE) || - (sType == COLOREXIT) || (sType == COLORNONE)) + if ((sType == COLORFULL) || + (sType == COLORRED) || + (sType == COLORGREEN)|| + (sType == COLORBLUE) || + (sType == COLOREXIT) || + (sType == COLORNONE)) { cInputCalcSensorValues(Tmp); } @@ -359,10 +362,11 @@ void cInputCalcSensorValues(UBYTE No) &(VarsInput.EdgeCnt[No]), ((IOMapInput.Inputs[No].SensorMode) & SLOPEMASK), ((IOMapInput.Inputs[No].SensorMode) & MODEMASK)); + } break; - /* Triple case intended */ + /* Tripple case intended */ case LOWSPEED: case LOWSPEED_9V: case HIGHSPEED: @@ -382,11 +386,6 @@ void cInputCalcSensorValues(UBYTE No) { case SENSOROFF: { - - /* Make sure that sensor data are invalid while unplugged*/ - VarsInput.InvalidTimer[No] = INVALID_RELOAD_COLOR; - IOMapInput.Inputs[No].InvalidData = INVALID_DATA; - /* Check if sensor has been attached */ if (dInputCheckColorStatus(No)) { @@ -449,11 +448,6 @@ void cInputCalcSensorValues(UBYTE No) { case SENSOROFF: { - - /* Make sure that sensor data are invalid while unplugged */ - VarsInput.InvalidTimer[No] = INVALID_RELOAD_COLOR; - IOMapInput.Inputs[No].InvalidData = INVALID_DATA; - /* Check if sensor has been attached */ if (dInputCheckColorStatus(No)) { @@ -1109,6 +1103,8 @@ void cInputSetupType(UBYTE Port, UBYTE newType, UBYTE OldType) dInputSetDirInDigi1(Port); IOMapInput.Colors[Port].CalibrationState = SENSORCAL; VarsInput.VarsColor[Port].ColorInitState = 0; + + IOMapInput.Inputs[Port].SensorValue = BLACKCOLOR; } break; diff --git a/AT91SAM7S256/Source/c_loader.c b/AT91SAM7S256/Source/c_loader.c index d6ee342..b9f290f 100644 --- a/AT91SAM7S256/Source/c_loader.c +++ b/AT91SAM7S256/Source/c_loader.c @@ -312,10 +312,7 @@ UWORD cLoaderFileRq(UBYTE Cmd, UBYTE *pFileName, UBYTE *pBuffer, ULONG *pLen case DELETE: { ReturnState = cLoaderDeleteFile(pFileName); -/* - ReturnState = dLoaderDelete(pFileName); - IOMapLoader.FreeUserFlash = dLoaderReturnFreeUserFlash(); -*/ + } break; case DELETEUSERFLASH: diff --git a/AT91SAM7S256/Source/c_loader.iom b/AT91SAM7S256/Source/c_loader.iom index 6ad2d53..c0549b1 100644 --- a/AT91SAM7S256/Source/c_loader.iom +++ b/AT91SAM7S256/Source/c_loader.iom @@ -1,11 +1,11 @@ // // Date init 14.12.2004 // -// Revision date $Date:: 16-12-08 12:11 $ +// Revision date $Date:: 19-03-10 12:36 $ // // Filename $Workfile:: c_loader.iom $ // -// Version $Revision:: 14 $ +// Version $Revision:: 17 $ // // Archive $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/c_load $ // @@ -21,7 +21,7 @@ //For example, version 1.5 would be 0x0105 //If these switch to little-endian, be sure to update //definition and usages of VM_OLDEST_COMPATIBLE_VERSION, too! -#define FIRMWAREVERSION 0x011C //1.28 +#define FIRMWAREVERSION 0x011F //1.31 #define PROTOCOLVERSION 0x017C //1.124 enum diff --git a/AT91SAM7S256/Source/c_output.c b/AT91SAM7S256/Source/c_output.c index ca3c494..212cc89 100644 --- a/AT91SAM7S256/Source/c_output.c +++ b/AT91SAM7S256/Source/c_output.c @@ -92,7 +92,7 @@ void cOutputCtrl(void) pOut->Flags &= ~UPDATE_SPEED; if (pOut->Mode & MOTORON) { - dOutputSetSpeed(Tmp, pOut->RunState, pOut->Speed, pOut->SyncTurnParameter); + dOutputSetSpeed (Tmp, pOut->RunState, pOut->Speed, pOut->SyncTurnParameter); } } if (pOut->Flags & UPDATE_TACHO_LIMIT) diff --git a/AT91SAM7S256/Source/d_loader.c b/AT91SAM7S256/Source/d_loader.c index 86f428f..99624e8 100644 --- a/AT91SAM7S256/Source/d_loader.c +++ b/AT91SAM7S256/Source/d_loader.c @@ -1,11 +1,11 @@ // // Date init 14.12.2004 // -// Revision date $Date:: 2-12-08 14:30 $ +// Revision date $Date:: 24-06-09 8:53 $ // // Filename $Workfile:: d_loader.c $ // -// Version $Revision:: 16 $ +// Version $Revision:: 18 $ // // Archive $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/d_load $ // @@ -20,7 +20,7 @@ #include #include -#define FILEVERSION (0x0000010CL) +#define FILEVERSION (0x0000010DL) //(0x0000010CL) #define MAX_FILES ((FILETABLE_SIZE) - 1) /* Last file entry is used for file version*/ #define FILEVERSIONINDEX ((FILETABLE_SIZE) - 1) /* Last file entry is used for file version*/ @@ -219,7 +219,9 @@ UWORD dLoaderDeleteFilePtr(UWORD Handle) /* Update the HandleTable[].FileIndex */ for (LongCnt = 0; LongCnt < MAX_HANDLES; LongCnt++) { - if ((HandleTable[Handle].FileIndex <= HandleTable[LongCnt].FileIndex) && (FREE != HandleTable[LongCnt].Status)) + + /* FileIndex must not be decremented for to the file to be deleted (when Handle = LongCnt)*/ + if ((HandleTable[Handle].FileIndex < HandleTable[LongCnt].FileIndex) && (FREE != HandleTable[LongCnt].Status)) { (HandleTable[LongCnt].FileIndex)--; } diff --git a/AT91SAM7S256/Source/d_loader.h b/AT91SAM7S256/Source/d_loader.h index 2f564ba..e5ecb82 100644 --- a/AT91SAM7S256/Source/d_loader.h +++ b/AT91SAM7S256/Source/d_loader.h @@ -1,11 +1,11 @@ // // Date init 14.12.2004 // -// Revision date $Date:: 3/21/09 10:03a $ +// Revision date $Date:: 24-06-09 12:15 $ // // Filename $Workfile:: d_loader.h $ // -// Version $Revision:: 17 $ +// Version $Revision:: 18 $ // // Archive $Archive:: /LMS2006/Sys01/Main_V02/Firmware/Source/d_load $ // @@ -18,7 +18,7 @@ #define FILETABLE_SIZE ((2 * SECTORSIZE)/4) #define STARTOFFILETABLE (0x140000L - (FILETABLE_SIZE*4)) #define FILEPTRTABLE ((const ULONG*)(0x140000L - (FILETABLE_SIZE*4))) -#define STARTOFUSERFLASH (0x125800L)//(0x124600L) +#define STARTOFUSERFLASH (0x125800L)//(0x124600L) 1.31 == (0x122100L) #define SIZEOFUSERFLASH ((ULONG)STARTOFFILETABLE - STARTOFUSERFLASH) #define SIZEOFFLASH 262144L diff --git a/AT91SAM7S256/Source/d_lowspeed.r b/AT91SAM7S256/Source/d_lowspeed.r index 3ca660d..30e71b8 100644 --- a/AT91SAM7S256/Source/d_lowspeed.r +++ b/AT91SAM7S256/Source/d_lowspeed.r @@ -144,87 +144,121 @@ const ULONG CLK_OR_DATA_PINS[4] = {CHANNEL_ONE_CLK | CHANNEL_ONE_DATA, #define SETDebugOutputLow *AT91C_PIOA_CODR = 0x20000000 + #define SETClkComOneHigh *AT91C_PIOA_SODR = CHANNEL_ONE_CLK + #define SETClkComOneLow *AT91C_PIOA_CODR = CHANNEL_ONE_CLK + #define GetClkComOnePinLevel *AT91C_PIOA_PDSR & CHANNEL_ONE_CLK #define SETClkComTwoHigh *AT91C_PIOA_SODR = CHANNEL_TWO_CLK + #define SETClkComTwoLow *AT91C_PIOA_CODR = CHANNEL_TWO_CLK + #define GetClkComTwoPinLevel *AT91C_PIOA_PDSR & CHANNEL_TWO_CLK #define SETClkComThreeHigh *AT91C_PIOA_SODR = CHANNEL_THREE_CLK + #define SETClkComThreeLow *AT91C_PIOA_CODR = CHANNEL_THREE_CLK + #define GetClkComThreePinLevel *AT91C_PIOA_PDSR & CHANNEL_THREE_CLK #define SETClkComFourHigh *AT91C_PIOA_SODR = CHANNEL_FOUR_CLK + #define SETClkComFourLow *AT91C_PIOA_CODR = CHANNEL_FOUR_CLK + #define GetClkComFourPinLevel *AT91C_PIOA_PDSR & CHANNEL_FOUR_CLK + #define SETDataComOneHigh *AT91C_PIOA_SODR = CHANNEL_ONE_DATA + #define SETDataComOneLow *AT91C_PIOA_CODR = CHANNEL_ONE_DATA + #define GetDataComOnePinLevel *AT91C_PIOA_PDSR & CHANNEL_ONE_DATA + #define GETDataComOnePinDirection *AT91C_PIOA_OSR & CHANNEL_ONE_DATA #define SETDataComTwoHigh *AT91C_PIOA_SODR = CHANNEL_TWO_DATA + #define SETDataComTwoLow *AT91C_PIOA_CODR = CHANNEL_TWO_DATA + #define GetDataComTwoPinLevel *AT91C_PIOA_PDSR & CHANNEL_TWO_DATA + #define GETDataComTwoPinDirection *AT91C_PIOA_OSR & CHANNEL_TWO_DATA #define SETDataComThreeHigh *AT91C_PIOA_SODR = CHANNEL_THREE_DATA + #define SETDataComThreeLow *AT91C_PIOA_CODR = CHANNEL_THREE_DATA + #define GetDataComThreePinLevel *AT91C_PIOA_PDSR & CHANNEL_THREE_DATA + #define GETDataComThreePinDirection *AT91C_PIOA_OSR & CHANNEL_THREE_DATA #define SETDataComFourHigh *AT91C_PIOA_SODR = CHANNEL_FOUR_DATA + #define SETDataComFourLow *AT91C_PIOA_CODR = CHANNEL_FOUR_DATA + #define GetDataComFourPinLevel *AT91C_PIOA_PDSR & CHANNEL_FOUR_DATA + #define GETDataComFourPinDirection *AT91C_PIOA_OSR & CHANNEL_FOUR_DATA #define SETDataComOneToInput *AT91C_PIOA_ODR = CHANNEL_ONE_DATA; + #define SETDataComOneToOutput *AT91C_PIOA_OER = CHANNEL_ONE_DATA; #define SETDataComTwoToInput *AT91C_PIOA_ODR = CHANNEL_TWO_DATA; + #define SETDataComTwoToOutput *AT91C_PIOA_OER = CHANNEL_TWO_DATA; #define SETDataComThreeToInput *AT91C_PIOA_ODR = CHANNEL_THREE_DATA; + #define SETDataComThreeToOutput *AT91C_PIOA_OER = CHANNEL_THREE_DATA; #define SETDataComFourToInput *AT91C_PIOA_ODR = CHANNEL_FOUR_DATA; + #define SETDataComFourToOutput *AT91C_PIOA_OER = CHANNEL_FOUR_DATA; #define DISABLEPullupDataComOne *AT91C_PIOA_PPUDR = CHANNEL_ONE_DATA; + #define DISABLEPullupClkComOne *AT91C_PIOA_PPUDR = CHANNEL_ONE_CLK; #define DISABLEPullupDataComTwo *AT91C_PIOA_PPUDR = CHANNEL_TWO_DATA; + #define DISABLEPullupClkComTwo *AT91C_PIOA_PPUDR = CHANNEL_TWO_CLK; #define DISABLEPullupDataComThree *AT91C_PIOA_PPUDR = CHANNEL_THREE_DATA; + #define DISABLEPullupClkComThree *AT91C_PIOA_PPUDR = CHANNEL_THREE_CLK; #define DISABLEPullupDataComFour *AT91C_PIOA_PPUDR = CHANNEL_FOUR_DATA; + #define DISABLEPullupClkComFour *AT91C_PIOA_PPUDR = CHANNEL_FOUR_CLK; #define ENABLEPullupDataComOne *AT91C_PIOA_PPUER = CHANNEL_ONE_DATA; + #define ENABLEPullupClkComOne *AT91C_PIOA_PPUER = CHANNEL_ONE_CLK; #define ENABLEPullupDataComTwo *AT91C_PIOA_PPUER = CHANNEL_TWO_DATA; + #define ENABLEPullupClkComTwo *AT91C_PIOA_PPUER = CHANNEL_TWO_CLK; #define ENABLEPullupDataComThree *AT91C_PIOA_PPUER = CHANNEL_THREE_DATA; + #define ENABLEPullupClkComThree *AT91C_PIOA_PPUER = CHANNEL_THREE_CLK; #define ENABLEPullupDataComFour *AT91C_PIOA_PPUER = CHANNEL_FOUR_DATA; + #define ENABLEPullupClkComFour *AT91C_PIOA_PPUER = CHANNEL_FOUR_CLK; #define SETClkLow(ChannelNr) {\ *AT91C_PIOA_CODR = CLK_PINS[ChannelNr];\ LowSpeedData[ChannelNr].ClkStatus = 0;\ -} + } #define SETClkHigh(ChannelNr) {\ *AT91C_PIOA_SODR = CLK_PINS[ChannelNr];\ LowSpeedData[ChannelNr].ClkStatus = 1;\ -} + } #define SETDataLow(ChannelNr) {\ *AT91C_PIOA_CODR = DATA_PINS[ChannelNr];\ @@ -248,11 +282,11 @@ const ULONG CLK_OR_DATA_PINS[4] = {CHANNEL_ONE_CLK | CHANNEL_ONE_DATA, #define ENABLEPWMTimerForLowCom {\ *AT91C_PWMC_ENA = AT91C_PWMC_CHID0; /* Enable PWM output channel 0 */\ -} + } #define DISABLEPWMTimerForLowCom {\ *AT91C_PWMC_DIS = AT91C_PWMC_CHID0; /* Disable PWM output channel 0 */\ -} + } #define OLD_DISABLEPWMTimerForLowCom {\ *AT91C_PWMC_DIS = AT91C_PWMC_CHID0; /* Disable PWM output channel 0 */\ @@ -609,7 +643,7 @@ __ramfunc void LowSpeedPwmIrqHandler(void) LowSpeedData[ChannelNumber].RxState = RX_DATA_CLK_LOW;\ LowSpeedData[ChannelNumber].ReStartBit = (1 - (NoRestart & (1< 500) + { + SyncData.SyncTachoDif = 500; + } + if (SyncData.SyncTachoDif < -500) + { + SyncData.SyncTachoDif = -500; + } + + /* if ((SWORD)SyncData.SyncTachoDif > 500) { SyncData.SyncTachoDif = 500; @@ -971,6 +981,7 @@ void dOutputSyncMotorPosition(UBYTE MotorOne, UBYTE MotorTwo) { SyncData.SyncTachoDif = -500; } + */ PValue = (SWORD)SyncData.SyncTachoDif * (SWORD)(pOne->RegPParameter/REG_CONST_DIV); @@ -1116,140 +1127,6 @@ void dOutputMotorReachedTachoLimit(UBYTE MotorNr) pTwo->MotorRunState = pTwo->RunStateAtLimit; pTwo->RegulationMode = REGSTATE_IDLE; } -/* - if (MotorNr == MOTOR_A) - { - MotorOne = MotorNr; - MotorTwo = MotorOne + 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & B - MotorData[MotorOne].MotorSetSpeed = 0; - MotorData[MotorOne].MotorTargetSpeed = 0; - MotorData[MotorOne].MotorActualSpeed = 0; - MotorData[MotorOne].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorOne].RegulationMode = REGSTATE_IDLE; - MotorData[MotorTwo].MotorSetSpeed = 0; - MotorData[MotorTwo].MotorTargetSpeed = 0; - MotorData[MotorTwo].MotorActualSpeed = 0; - MotorData[MotorTwo].MotorRunState = pTwo->RunStateAtLimit; - MotorData[MotorTwo].RegulationMode = REGSTATE_IDLE; - } - else - { - MotorTwo = MotorOne + 2; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & C - MotorData[MotorOne].MotorSetSpeed = 0; - MotorData[MotorOne].MotorTargetSpeed = 0; - MotorData[MotorOne].MotorActualSpeed = 0; - MotorData[MotorOne].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorOne].RegulationMode = REGSTATE_IDLE; - MotorData[MotorTwo].MotorSetSpeed = 0; - MotorData[MotorTwo].MotorTargetSpeed = 0; - MotorData[MotorTwo].MotorActualSpeed = 0; - MotorData[MotorTwo].MotorRunState = pTwo->RunStateAtLimit; - MotorData[MotorTwo].RegulationMode = REGSTATE_IDLE; - } - else - { - //Only Motor A has Sync setting => Stop normal - MotorData[MotorNr].MotorSetSpeed = 0; - MotorData[MotorNr].MotorTargetSpeed = 0; - MotorData[MotorNr].MotorActualSpeed = 0; - MotorData[MotorNr].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorNr].RegulationMode = REGSTATE_IDLE; - } - } - } - if (MotorNr == MOTOR_B) - { - MotorOne = MotorNr; - MotorTwo = MotorOne - 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & B - MotorData[MotorOne].MotorSetSpeed = 0; - MotorData[MotorOne].MotorTargetSpeed = 0; - MotorData[MotorOne].MotorActualSpeed = 0; - MotorData[MotorOne].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorOne].RegulationMode = REGSTATE_IDLE; - MotorData[MotorTwo].MotorSetSpeed = 0; - MotorData[MotorTwo].MotorTargetSpeed = 0; - MotorData[MotorTwo].MotorActualSpeed = 0; - MotorData[MotorTwo].MotorRunState = pTwo->RunStateAtLimit; - MotorData[MotorTwo].RegulationMode = REGSTATE_IDLE; - } - MotorTwo = MotorOne + 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor B & C - MotorData[MotorOne].MotorSetSpeed = 0; - MotorData[MotorOne].MotorTargetSpeed = 0; - MotorData[MotorOne].MotorActualSpeed = 0; - MotorData[MotorOne].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorOne].RegulationMode = REGSTATE_IDLE; - MotorData[MotorTwo].MotorSetSpeed = 0; - MotorData[MotorTwo].MotorTargetSpeed = 0; - MotorData[MotorTwo].MotorActualSpeed = 0; - MotorData[MotorTwo].MotorRunState = pTwo->RunStateAtLimit; - MotorData[MotorTwo].RegulationMode = REGSTATE_IDLE; - } - else - { - //Only Motor B has Sync settings => Stop normal - MotorData[MotorNr].MotorSetSpeed = 0; - MotorData[MotorNr].MotorTargetSpeed = 0; - MotorData[MotorNr].MotorActualSpeed = 0; - MotorData[MotorNr].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorNr].RegulationMode = REGSTATE_IDLE; - } - } - if (MotorNr == MOTOR_C) - { - MotorOne = MotorNr; - MotorTwo = MotorOne - 2; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & C - MotorData[MotorOne].MotorSetSpeed = 0; - MotorData[MotorOne].MotorTargetSpeed = 0; - MotorData[MotorOne].MotorActualSpeed = 0; - MotorData[MotorOne].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorOne].RegulationMode = REGSTATE_IDLE; - MotorData[MotorTwo].MotorSetSpeed = 0; - MotorData[MotorTwo].MotorTargetSpeed = 0; - MotorData[MotorTwo].MotorActualSpeed = 0; - MotorData[MotorTwo].MotorRunState = pTwo->RunStateAtLimit; - MotorData[MotorTwo].RegulationMode = REGSTATE_IDLE; - } - MotorTwo = MotorOne - 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor B & C - MotorData[MotorOne].MotorSetSpeed = 0; - MotorData[MotorOne].MotorTargetSpeed = 0; - MotorData[MotorOne].MotorActualSpeed = 0; - MotorData[MotorOne].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorOne].RegulationMode = REGSTATE_IDLE; - MotorData[MotorTwo].MotorSetSpeed = 0; - MotorData[MotorTwo].MotorTargetSpeed = 0; - MotorData[MotorTwo].MotorActualSpeed = 0; - MotorData[MotorTwo].MotorRunState = pTwo->RunStateAtLimit; - MotorData[MotorTwo].RegulationMode = REGSTATE_IDLE; - } - else - { - //Only Motor C has Sync settings => Stop normal - MotorData[MotorNr].MotorSetSpeed = 0; - MotorData[MotorNr].MotorTargetSpeed = 0; - MotorData[MotorNr].MotorActualSpeed = 0; - MotorData[MotorNr].MotorRunState = pOne->RunStateAtLimit; - MotorData[MotorNr].RegulationMode = REGSTATE_IDLE; - } - } -*/ } else { @@ -1281,83 +1158,6 @@ void dOutputSyncTachoLimitControl(UBYTE MotorNr) } if (MotorTwo == 0xFF) MotorOne = 0xFF; -/* - if (MotorNr == MOTOR_A) - { - MotorOne = MotorNr; - MotorTwo = MotorOne + 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & B - } - else - { - MotorTwo = MotorOne + 2; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & C - } - else - { - //Only Motor A has Sync setting => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } - if (MotorNr == MOTOR_B) - { - MotorOne = MotorNr; - MotorTwo = MotorOne - 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & B, which has already been called when running throught motor A - //MotorOne = 0xFF; - //MotorTwo = 0xFF; - } - else - { - MotorTwo = MotorOne + 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor B & C - } - else - { - //Only Motor B has Sync settings => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } - if (MotorNr == MOTOR_C) - { - MotorOne = MotorNr; - MotorTwo = MotorOne - 2; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & C, which has already been called when running throught motor A - //MotorOne = 0xFF; - //MotorTwo = 0xFF; - } - else - { - MotorTwo = MotorOne - 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor B & C, which has already been called when running throught motor B - //MotorOne = 0xFF; - //MotorTwo = 0xFF; - } - else - { - //Only Motor C has Sync settings => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } -*/ if ((MotorOne != 0xFF) && (MotorTwo != 0xFF)) { MOTORDATA * pOne = &(MotorData[MotorOne]); @@ -1523,77 +1323,6 @@ void dOutputResetSyncMotors(UBYTE MotorNr) } if (MotorTwo == 0xFF) MotorOne = 0xFF; -/* - if (MotorNr == MOTOR_A) - { - MotorOne = MotorNr; - MotorTwo = MotorOne + 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & B - } - else - { - MotorTwo = MotorOne + 2; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & C - } - else - { - //Only Motor A has Sync setting => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } - if (MotorNr == MOTOR_B) - { - MotorOne = MotorNr; - MotorTwo = MotorOne - 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & B - } - else - { - MotorTwo = MotorOne + 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor B & C - } - else - { - //Only Motor B has Sync settings => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } - if (MotorNr == MOTOR_C) - { - MotorOne = MotorNr; - MotorTwo = MotorOne - 2; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & C - } - else - { - MotorTwo = MotorOne - 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor B & C - } - else - { - //Only Motor C has Sync settings => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } -*/ MOTORDATA * pMD = &(MotorData[MotorNr]); if ((MotorOne != 0xFF) && (MotorTwo != 0xFF)) { @@ -1627,79 +1356,6 @@ void dOutputRampDownSynch(UBYTE MotorNr) } if (MotorTwo == 0xFF) MotorOne = 0xFF; -/* - if (MotorNr == MOTOR_A) - { - MotorOne = MotorNr; - MotorTwo = MotorOne + 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & B - } - else - { - MotorTwo = MotorOne + 2; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & C - } - else - { - //Only Motor A has Sync setting => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } - if (MotorNr == MOTOR_B) - { - MotorOne = MotorNr; - MotorTwo = MotorOne - 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & B, which has already been called when running throught motor A - //MotorOne = 0xFF; - //MotorTwo = 0xFF; - } - else - { - MotorTwo = MotorOne + 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor B & C - } - else - { - //Only Motor B has Sync settings => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } - if (MotorNr == MOTOR_C) - { - MotorOne = MotorNr; - MotorTwo = MotorOne - 2; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor A & C, which has already been called when running throught motor A - } - else - { - MotorTwo = MotorOne - 1; - if (MotorData[MotorTwo].RegulationMode & REGSTATE_SYNCHRONE) - { - //Synchronise motor B & C,, which has already been called when running throught motor B - } - else - { - //Only Motor C has Sync settings => Stop normal - MotorOne = 0xFF; - MotorTwo = 0xFF; - } - } - } -*/ if ((MotorOne != 0xFF) && (MotorTwo != 0xFF)) { MOTORDATA * pOne = &(MotorData[MotorOne]); -- cgit v1.2.3 From 9fd753c2853ab23c0584f4b9345bd1719363f2bd Mon Sep 17 00:00:00 2001 From: tcsadmin Date: Tue, 19 Oct 2010 17:29:09 +0000 Subject: Fixed a couple hi-speed port problems git-svn-id: https://mindboards.svn.sourceforge.net/svnroot/mindboards/lms_nbcnxc/branches/version_131@27 c9361245-7fe8-9947-84e8-057757c4e366 --- AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep | 3357 ++++++++++----------- AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt | 6 +- AT91SAM7S256/Source/c_cmd.c | 6 +- AT91SAM7S256/Source/c_comm.c | 1 + AT91SAM7S256/Source/c_comm.iom | 3 +- 5 files changed, 1686 insertions(+), 1687 deletions(-) (limited to 'AT91SAM7S256/Source/c_comm.iom') diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep index 6e43b6d..10e882b 100644 --- a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep @@ -6,132 +6,50 @@ Benchmark - $PROJ_DIR$\Benchmark\Obj\d_input.r79 - $PROJ_DIR$\Benchmark\Obj\c_loader.r79 - $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\Benchmark\Exe\LMS_ARM.d79 - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\Benchmark\Obj\d_usb.pbi - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\Benchmark\Obj\c_loader.pbi + $PROJ_DIR$\Benchmark\Obj\m_sched.r79 + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\Benchmark\Obj\d_hispeed.pbi + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\Benchmark\Obj\c_sound.pbi $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\Benchmark\Obj\c_display.pbi - $PROJ_DIR$\Benchmark\Obj\d_button.pbi - $PROJ_DIR$\..\..\Source\d_display.h - $TOOLKIT_DIR$\inc\xmtx.h - $PROJ_DIR$\Benchmark\Obj\d_timer.r79 - $PROJ_DIR$\Benchmark\Obj\Cstartup.r79 - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\BtTest.inc - $TOOLKIT_DIR$\inc\DLib_Threads.h - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\d_usb.r + $PROJ_DIR$\Benchmark\Obj\d_lowspeed.r79 + $PROJ_DIR$\Benchmark\Obj\d_display.r79 $TOOLKIT_DIR$\inc\xtls.h $PROJ_DIR$\..\..\Source\c_loader.h $PROJ_DIR$\Benchmark\Obj\m_sched.pbi $PROJ_DIR$\Benchmark\Obj\c_button.pbi - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\Benchmark\Obj\d_lowspeed.pbi - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\Benchmark\Obj\d_ioctrl.pbi - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\RCXintro_9.txt - $PROJ_DIR$\Benchmark\Obj\c_ioctrl.r79 - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\Benchmark\Obj\c_lowspeed.r79 - $PROJ_DIR$\Benchmark\Obj\c_comm.pbi - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\d_timer.r - $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_comm.c + $TOOLKIT_DIR$\inc\DLib_Threads.h $PROJ_DIR$\..\..\Source\RCXintro_12.txt - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\Submenu04.rms $TOOLKIT_DIR$\inc\DLib_Defaults.h $PROJ_DIR$\..\..\Source\Submenu02.rms $PROJ_DIR$\Benchmark\Obj\c_cmd.pbi $PROJ_DIR$\Benchmark\Obj\d_hispeed.r79 - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $PROJ_DIR$\..\..\Source\d_button.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt - $PROJ_DIR$\Benchmark\Obj\d_hispeed.pbi - $PROJ_DIR$\..\..\Source\c_output.h - $PROJ_DIR$\Benchmark\Obj\c_sound.pbi - $PROJ_DIR$\Benchmark\Obj\c_loader.pbi - $PROJ_DIR$\Benchmark\Obj\m_sched.r79 - $PROJ_DIR$\..\..\Source\d_loader.h - $PROJ_DIR$\..\..\Source\Port.txt - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\Benchmark\Obj\d_ioctrl.r79 - $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\Benchmark\Obj\d_loader.pbi - $PROJ_DIR$\Benchmark\Obj\c_ui.pbi - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_bt.r - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\..\..\Source\d_output.h - $PROJ_DIR$\..\..\Source\modules.h - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\..\..\Source\c_button.iom - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_usb.r - $PROJ_DIR$\Benchmark\Obj\d_lowspeed.r79 - $PROJ_DIR$\Benchmark\Obj\d_display.r79 - $PROJ_DIR$\Benchmark\Obj\d_bt.pbi - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\Include\sam7s256.h - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\c_ui.iom - $PROJ_DIR$\Benchmark\Obj\d_display.pbi - $PROJ_DIR$\..\..\Source\Submenu01.rms - $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\Ok.txt - $PROJ_DIR$\Benchmark\Obj\c_display.r79 - $PROJ_DIR$\Benchmark\Obj\d_input.pbi $TOOLKIT_DIR$\inc\xlocale.h $PROJ_DIR$\Benchmark\Obj\c_button.r79 $PROJ_DIR$\..\..\Source\d_loader.r - $PROJ_DIR$\..\..\Source\RCXintro_2.txt $PROJ_DIR$\Benchmark\Obj\c_comm.r79 - $PROJ_DIR$\Benchmark\Obj\c_input.pbi - $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\Benchmark\Obj\c_ui.r79 - $PROJ_DIR$\Benchmark\Obj\d_button.r79 - $PROJ_DIR$\Benchmark\Obj\d_bt.r79 - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\Benchmark\Obj\Cstartup_SAM7.r79 - $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\d_usb.h - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\m_sched.h $PROJ_DIR$\Benchmark\Obj\c_lowspeed.pbi - $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\Benchmark\Obj\d_output.pbi $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\Benchmark\Obj\d_usb.r79 $PROJ_DIR$\Benchmark\Obj\c_input.r79 $PROJ_DIR$\..\..\Source\c_ioctrl.iom $PROJ_DIR$\..\..\Source\Submenu07.rms - $PROJ_DIR$\Benchmark\Obj\d_usb.r79 $PROJ_DIR$\Benchmark\Obj\Cstartup_SAM7.pbi $PROJ_DIR$\..\..\Source\c_input.iom $PROJ_DIR$\Benchmark\Obj\c_output.pbi - $PROJ_DIR$\..\..\Source\RCXintro_14.txt $PROJ_DIR$\Benchmark\Obj\d_sound.pbi - $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd + $PROJ_DIR$\..\..\Source\RCXintro_14.txt $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\..\..\Source\d_timer.h $PROJ_DIR$\..\..\Source\Status.txt $PROJ_DIR$\..\..\Source\Step.txt @@ -142,45 +60,122 @@ $PROJ_DIR$\..\..\Source\c_comm.iom $PROJ_DIR$\..\..\Source\c_comm.h $PROJ_DIR$\..\..\Source\Display.txt - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\Lib\dl4tptinl8n.h $PROJ_DIR$\..\..\Source\Cursor.txt $PROJ_DIR$\..\..\Source\c_button.h - $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\Lib\dl4tptinl8n.h $PROJ_DIR$\..\..\Source\Running.txt - $PROJ_DIR$\..\..\Source\RCXintro_16.txt $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\RCXintro_13.txt $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt $PROJ_DIR$\Benchmark\Obj\d_loader.r79 $PROJ_DIR$\..\..\Source\Test1.txt $PROJ_DIR$\..\..\Source\c_loader.iom $PROJ_DIR$\..\..\Source\d_button.r $PROJ_DIR$\Benchmark\Obj\d_timer.pbi - $PROJ_DIR$\..\..\Source\Connections.txt $PROJ_DIR$\..\..\Source\c_output.iom $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Connections.txt $PROJ_DIR$\..\..\Source\d_sound.r $TOOLKIT_DIR$\inc\xlocale_c.h $PROJ_DIR$\..\..\Source\d_sound.h $TOOLKIT_DIR$\inc\yvals.h $PROJ_DIR$\Benchmark\Obj\c_ioctrl.pbi + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.h $PROJ_DIR$\..\..\Source\RCXintro_6.txt $PROJ_DIR$\..\Include\sam7s256.c $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\d_hispeed.h $PROJ_DIR$\Benchmark\Obj\c_sound.r79 $TOOLKIT_DIR$\inc\xtinfo.h $PROJ_DIR$\..\..\Source\d_hispeed.r $PROJ_DIR$\..\..\Source\stdconst.h - $PROJ_DIR$\..\..\Source\RCXintro_4.txt $PROJ_DIR$\..\..\Source\c_ioctrl.h $PROJ_DIR$\Benchmark\Obj\c_cmd.r79 + $PROJ_DIR$\..\..\Source\RCXintro_4.txt $TOOLKIT_DIR$\inc\string.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt $PROJ_DIR$\Benchmark\Obj\c_output.r79 - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\Benchmark\Obj\d_lowspeed.pbi + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\Benchmark\Obj\d_ioctrl.pbi + $PROJ_DIR$\Benchmark\Obj\d_usb.pbi + $PROJ_DIR$\Benchmark\Obj\c_display.pbi + $PROJ_DIR$\Benchmark\Obj\d_button.pbi + $PROJ_DIR$\..\..\Source\d_display.h + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\Benchmark\Obj\d_timer.r79 + $PROJ_DIR$\Benchmark\Obj\Cstartup.r79 + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\Benchmark\Obj\c_comm.pbi + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\Benchmark\Obj\c_ioctrl.r79 + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\Benchmark\Exe\LMS_ARM.d79 + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\Benchmark\Obj\d_input.r79 + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\Benchmark\Obj\c_lowspeed.r79 + $PROJ_DIR$\Benchmark\Obj\c_ui.pbi + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\modules.h + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\Benchmark\Obj\c_display.r79 + $PROJ_DIR$\Benchmark\Obj\d_input.pbi + $PROJ_DIR$\Benchmark\Obj\c_loader.r79 + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_button.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\Benchmark\Obj\d_ioctrl.r79 + $PROJ_DIR$\Benchmark\Obj\d_loader.pbi + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\Benchmark\Obj\d_display.pbi + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\Benchmark\Obj\d_bt.pbi + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Test2.txt + $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\Wait.txt $PROJ_DIR$\..\..\Source\c_display.c $PROJ_DIR$\..\..\Source\c_input.c $PROJ_DIR$\..\..\Source\c_ioctrl.c @@ -190,626 +185,631 @@ $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\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\Benchmark\Obj\c_input.pbi + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\Benchmark\Obj\c_ui.r79 + $PROJ_DIR$\Benchmark\Obj\d_button.r79 + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\Benchmark\Obj\d_bt.r79 + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\Benchmark\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\c_button.c + [ROOT_NODE] - BICOMP - 24 + XLINK + 112 + + + + $PROJ_DIR$\..\..\Source\c_cmd.c + ICCARM - 93 + 86 - - BICOMP - 166 68 139 74 50 + 22 + + ICCARM - 166 68 139 74 50 + 84 126 76 68 37 65 148 47 131 49 51 116 142 145 44 59 74 20 57 124 139 18 90 88 105 56 + + + BICOMP + 84 126 76 68 37 65 148 47 131 49 51 116 142 145 44 59 74 20 124 139 18 90 88 105 56 - $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\..\Source\c_comm.c - - BICOMP - 47 - ICCARM - 169 + 27 - - BICOMP - 166 68 161 151 119 147 85 129 74 131 133 61 75 42 126 143 156 45 66 59 18 25 170 38 136 + 104 + + ICCARM - 166 68 161 151 119 147 85 129 74 131 133 61 75 42 126 143 156 45 137 66 59 18 25 170 38 136 + 84 126 51 65 34 148 76 49 52 194 77 42 88 74 20 57 124 139 18 90 102 24 13 99 105 168 72 82 127 154 - - - - [ROOT_NODE] - - XLINK - 3 + BICOMP + 84 126 51 65 34 148 76 49 52 194 77 42 88 74 20 124 139 18 90 102 24 13 99 105 168 72 82 127 154 - + $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd BILINK - 118 24 47 37 9 97 157 55 110 120 54 63 79 10 86 52 91 28 62 26 112 122 149 6 23 + 36 16 22 104 96 184 75 0 28 38 7 121 153 97 149 4 135 94 141 92 29 39 67 95 15 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - BICOMP - 37 + ICCARM + 23 - ICCARM - 96 + BICOMP + 4 - BICOMP - 166 68 133 147 115 85 161 131 134 106 162 125 170 156 45 66 59 18 25 15 92 21 12 38 19 154 164 69 80 + ICCARM + 84 197 146 117 77 83 - ICCARM - 166 68 133 147 115 85 161 131 134 106 162 125 170 156 45 137 66 59 18 25 15 92 21 12 38 19 154 164 69 80 + BICOMP + 84 197 146 117 77 83 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_input.c - BICOMP - 118 + ICCARM + 114 - ICCARM - 104 + BICOMP + 135 - BICOMP - 29 + ICCARM + 84 197 146 117 195 37 144 196 - ICCARM - 29 + BICOMP + 84 197 146 117 195 37 144 196 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - BICOMP - 9 + ICCARM + 140 - ICCARM - 90 + BICOMP + 94 - BICOMP - 170 156 45 66 59 18 25 166 68 131 40 11 + ICCARM + 88 74 20 57 124 139 18 90 84 197 146 117 137 128 - ICCARM - 170 156 45 137 66 59 18 25 166 68 131 40 11 + BICOMP + 88 74 20 124 139 18 90 84 197 146 117 137 128 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_loader.c - BICOMP - 97 + ICCARM + 63 - ICCARM - 114 + BICOMP + 141 - BICOMP - 166 68 107 119 2 151 + ICCARM + 84 126 197 146 117 2 26 88 74 20 57 124 139 18 90 102 24 13 99 105 168 72 82 127 154 - ICCARM - 166 68 107 119 2 151 + BICOMP + 84 126 197 146 117 2 26 88 74 20 124 139 18 90 102 24 13 99 105 168 72 82 127 154 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - BICOMP - 157 + ICCARM + 11 - ICCARM - 31 + BICOMP + 92 - BICOMP - 166 68 115 168 49 + ICCARM + 84 197 146 117 118 30 - ICCARM - 166 68 115 168 49 + BICOMP + 84 197 146 117 118 30 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\d_output.c - BICOMP - 55 + ICCARM + 50 - ICCARM - 1 + BICOMP + 29 - BICOMP - 166 68 147 115 57 22 + ICCARM + 84 197 146 117 125 110 - ICCARM - 166 68 147 115 57 22 + BICOMP + 84 197 146 117 125 110 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_sound.c - BICOMP - 110 + ICCARM + 48 - ICCARM - 36 + BICOMP + 39 - BICOMP - 166 68 61 119 43 34 + ICCARM + 84 197 146 117 73 71 - ICCARM - 166 68 61 119 43 34 + BICOMP + 84 197 146 117 73 71 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_timer.c - BICOMP - 120 + ICCARM + 100 - ICCARM - 172 + BICOMP + 67 - BICOMP - 143 156 45 66 59 18 25 35 166 68 151 53 67 131 + ICCARM + 84 197 146 117 44 106 - ICCARM - 143 156 45 137 66 59 18 25 35 166 68 151 53 67 131 + BICOMP + 84 197 146 117 44 106 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\d_usb.c - BICOMP - 54 + ICCARM + 32 - ICCARM - 163 + BICOMP + 95 - BICOMP - 38 156 45 66 59 18 25 170 166 68 129 147 103 155 + ICCARM + 84 197 146 117 194 10 - ICCARM - 38 156 45 137 66 59 18 25 170 166 68 129 147 103 155 + BICOMP + 84 197 146 117 194 10 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\m_sched.c - BICOMP - 63 + ICCARM + 1 - ICCARM - 100 + BICOMP + 15 - BICOMP - 143 156 45 66 59 18 25 170 15 92 21 12 38 19 154 164 69 80 166 68 85 88 109 81 33 131 147 74 129 119 151 115 161 133 61 135 70 105 128 138 141 58 89 20 27 144 64 160 95 4 167 123 158 51 73 30 99 171 41 140 121 111 142 127 82 150 152 5 87 46 44 16 98 116 196 17 146 83 + ICCARM + 84 126 197 146 117 79 52 195 37 55 131 14 191 107 152 5 142 145 76 85 132 - ICCARM - 143 156 45 137 66 59 18 25 170 15 92 21 12 38 19 154 164 69 80 166 68 85 88 109 81 33 131 147 74 129 119 151 115 161 133 61 135 70 105 128 138 141 58 89 20 27 144 64 160 95 4 167 123 158 51 73 30 99 171 41 140 121 111 142 127 82 150 152 5 87 46 44 16 98 116 196 17 146 83 + BICOMP + 84 126 197 146 117 79 52 195 37 55 131 14 191 107 152 5 142 145 76 85 132 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\c_display.c - AARM - 14 + ICCARM + 134 + + + BICOMP + 96 - AARM - 84 + ICCARM + 88 74 20 57 124 139 18 90 84 126 49 107 98 + + + BICOMP + 88 74 20 124 139 18 90 84 126 49 107 98 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\c_input.c - BICOMP - 79 + ICCARM + 33 - ICCARM - 102 + BICOMP + 184 - BICOMP - 166 68 109 81 33 125 65 170 156 45 66 59 18 25 + ICCARM + 84 126 195 37 144 68 - ICCARM - 166 68 109 81 33 125 65 170 156 45 137 66 59 18 25 + BICOMP + 84 126 195 37 144 68 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c - BICOMP - 10 + ICCARM + 109 - ICCARM - 101 + BICOMP + 75 - BICOMP - 166 109 81 33 50 148 + ICCARM + 84 126 34 85 137 - ICCARM - 166 109 81 33 50 148 + BICOMP + 84 126 34 85 137 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\c_loader.c - BICOMP - 86 + ICCARM + 136 - ICCARM - 78 + BICOMP + 0 - BICOMP - 166 109 81 33 170 156 45 66 59 18 25 11 72 + ICCARM + 84 126 65 34 2 14 - ICCARM - 166 109 81 33 11 72 + BICOMP + 84 126 65 34 2 14 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c - BICOMP - 52 + ICCARM + 120 - ICCARM - 48 + BICOMP + 28 - BICOMP - 166 109 81 33 162 165 + ICCARM + 84 126 116 37 152 118 - ICCARM - 166 109 81 33 162 165 + BICOMP + 84 126 116 37 152 118 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\c_output.c - BICOMP - 91 + ICCARM + 89 - ICCARM - 0 + BICOMP + 38 - BICOMP - 166 109 81 33 107 119 2 108 + ICCARM + 59 74 20 57 124 139 18 90 119 84 126 68 5 125 49 - ICCARM - 166 109 81 33 107 119 2 108 + BICOMP + 59 74 20 124 139 18 90 119 84 126 68 5 125 49 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\c_sound.c - BICOMP - 28 + ICCARM + 81 - ICCARM - 60 + BICOMP + 7 - BICOMP - 170 156 45 66 59 18 25 166 109 81 33 49 71 + ICCARM + 105 74 20 57 124 139 18 90 88 84 126 47 65 191 73 - ICCARM - 170 156 45 137 66 59 18 25 166 109 81 33 49 71 + BICOMP + 105 74 20 124 139 18 90 88 84 126 47 65 191 73 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_ui.c - BICOMP - 62 + ICCARM + 187 - ICCARM - 145 + BICOMP + 121 - BICOMP - 166 68 109 81 33 57 94 170 156 45 66 59 18 25 15 92 21 12 38 19 154 164 69 80 + ICCARM + 59 74 20 57 124 139 18 90 88 102 24 13 99 105 168 72 82 127 154 84 126 148 132 197 146 117 49 65 131 47 37 68 34 76 51 116 53 130 193 46 54 58 3 133 169 93 61 122 80 185 115 87 43 78 6 9 111 189 91 19 60 41 31 62 45 155 70 69 113 150 21 151 103 186 35 166 143 64 156 - ICCARM - 166 68 109 81 33 57 94 170 156 45 137 66 59 18 25 15 92 21 12 38 19 154 164 69 80 + BICOMP + 59 74 20 124 139 18 90 88 102 24 13 99 105 168 72 82 127 154 84 126 148 132 197 146 117 49 65 131 47 37 68 34 76 51 116 53 130 193 46 54 58 3 133 169 93 61 122 80 185 115 87 43 78 6 9 111 189 91 19 60 41 31 62 45 155 70 69 113 150 21 151 103 186 35 166 143 64 156 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\Include\Cstartup.s79 - BICOMP - 26 - - - ICCARM - 77 + AARM + 101 - BICOMP - 166 109 81 33 34 113 - - - ICCARM - 166 109 81 33 34 113 + AARM + 147 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - BICOMP - 112 + ICCARM + 192 - ICCARM - 132 + BICOMP + 36 - BICOMP - 166 109 81 33 67 32 + ICCARM + 108 - ICCARM - 166 109 81 33 67 32 + BICOMP + 108 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_bt.c - BICOMP - 122 + ICCARM + 190 - ICCARM - 130 + BICOMP + 153 - BICOMP - 166 109 81 33 155 153 + ICCARM + 84 126 197 146 117 42 123 88 74 20 57 124 139 18 90 - ICCARM - 166 109 81 33 155 153 + BICOMP + 84 126 197 146 117 42 123 88 74 20 124 139 18 90 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_button.c - BICOMP - 149 + ICCARM + 188 - ICCARM - 13 + BICOMP + 97 - BICOMP - 166 109 81 33 126 39 + ICCARM + 84 197 146 117 138 66 - ICCARM - 166 109 81 33 126 39 + BICOMP + 84 197 146 117 138 66 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_display.c - BICOMP - 6 + ICCARM + 12 - ICCARM - 117 + BICOMP + 149 - BICOMP - 166 109 81 33 106 76 + ICCARM + 84 197 146 117 98 129 - ICCARM - 166 109 81 33 106 76 + BICOMP + 84 197 146 117 88 74 20 124 139 18 90 98 129 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_button.c - BICOMP - 23 + ICCARM + 25 - ICCARM - 56 + BICOMP + 16 - BICOMP - 166 68 109 81 33 159 134 107 119 139 74 22 103 40 43 53 75 42 161 168 88 + ICCARM + 84 126 55 131 138 - ICCARM - 166 68 109 81 33 159 134 107 119 139 74 22 103 40 43 53 75 42 161 168 88 + BICOMP + 84 126 55 131 138 @@ -824,42 +824,108 @@ Bin Output - $PROJ_DIR$\..\..\..\..\lms_nbcnxc_128\AT91SAM7S256\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\d_display.h - $TOOLKIT_DIR$\inc\xmtx.h - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\BtTest.inc - $TOOLKIT_DIR$\inc\DLib_Threads.h - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\d_usb.r $TOOLKIT_DIR$\inc\xtls.h $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\c_comm.c + $TOOLKIT_DIR$\inc\DLib_Threads.h + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\Submenu02.rms + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_comm.h + $PROJ_DIR$\..\..\Source\Display.txt + $PROJ_DIR$\..\..\Source\Cursor.txt + $PROJ_DIR$\..\..\Source\c_button.h + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\..\Source\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\d_button.r + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\d_sound.r + $TOOLKIT_DIR$\inc\xlocale_c.h + $PROJ_DIR$\..\..\Source\d_sound.h + $TOOLKIT_DIR$\inc\yvals.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $TOOLKIT_DIR$\inc\xtinfo.h + $PROJ_DIR$\..\..\Source\d_hispeed.r + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $TOOLKIT_DIR$\inc\string.h $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\d_display.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\RCXintro_9.txt $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom $PROJ_DIR$\..\Include\ioat91sam7s256.h $PROJ_DIR$\..\..\Source\d_lowspeed.h $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\Object\d_display.s - $PROJ_DIR$\..\Object\d_output.pbi - $PROJ_DIR$\..\Object\c_loader.pbi + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\modules.h + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\Object\d_lowspeed.r79 + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_led.iom $PROJ_DIR$\..\Object\c_comm.pbi $PROJ_DIR$\..\Object\d_loader.r79 - $PROJ_DIR$\..\Object\c_ui.s - $PROJ_DIR$\..\Object\m_sched.s + $PROJ_DIR$\..\Object\d_output.pbi + $PROJ_DIR$\..\Object\c_loader.pbi $PROJ_DIR$\..\Object\c_button.s $PROJ_DIR$\..\Object\c_ioctrl.r79 $PROJ_DIR$\..\Object\c_input.r79 $PROJ_DIR$\..\Object\d_ioctrl.pbi - $PROJ_DIR$\..\..\Source\c_led.iom + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi $PROJ_DIR$\..\Object\LMS_ARM.a79 $PROJ_DIR$\..\Object\c_output.r79 $PROJ_DIR$\..\Object\c_sound.r79 @@ -867,24 +933,27 @@ $PROJ_DIR$\..\Object\c_loader.r79 $PROJ_DIR$\..\Object\c_ioctrl.s $PROJ_DIR$\..\Object\LMS_ARM.pbd - $PROJ_DIR$\..\Object\d_lowspeed.r79 - $PROJ_DIR$\..\Object\LMS_ARM.d79 - $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_ui.s + $PROJ_DIR$\..\Object\m_sched.s $PROJ_DIR$\..\Object\d_lowspeed.pbi + $PROJ_DIR$\..\Object\d_display.s + $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\Object\d_hispeed.pbi + $PROJ_DIR$\..\Object\Cstartup_SAM7.s $PROJ_DIR$\..\Object\c_button.pbi $PROJ_DIR$\..\Object\d_sound.r79 $PROJ_DIR$\..\Object\c_comm.r79 - $PROJ_DIR$\..\Object\d_hispeed.pbi - $PROJ_DIR$\..\Object\Cstartup_SAM7.s + $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\..\Source\d_led.h $PROJ_DIR$\..\Object\c_output.s $PROJ_DIR$\..\Object\d_timer.r79 - $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\..\Source\c_led.c $PROJ_DIR$\..\Object\c_ioctrl.pbi $PROJ_DIR$\..\Object\d_ioctrl.r79 $PROJ_DIR$\..\Object\m_sched.pbi $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 - $PROJ_DIR$\..\..\Source\d_led.h $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\..\Source\d_led.c $PROJ_DIR$\..\Object\c_output.pbi $PROJ_DIR$\..\Object\d_bt.s $PROJ_DIR$\..\Object\d_usb.r79 @@ -893,13 +962,13 @@ $PROJ_DIR$\..\Object\c_ui.pbi $PROJ_DIR$\..\Object\c_ui.r79 $PROJ_DIR$\..\Object\d_button.r79 - $PROJ_DIR$\..\..\Source\c_led.c - $PROJ_DIR$\..\Object\d_led.r79 - $PROJ_DIR$\..\..\Source\d_led.c $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\Object\d_led.r79 $PROJ_DIR$\..\..\Source\c_led.h - $PROJ_DIR$\..\Object\c_sound.s $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\c_sound.s + $PROJ_DIR$\..\Object\c_display.pbi $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 $PROJ_DIR$\..\..\Source\Submenu03.rms $PROJ_DIR$\at91SAM7S256_Remap.xcl @@ -910,118 +979,25 @@ $PROJ_DIR$\..\..\Source\d_sound_adpcm.r $PROJ_DIR$\..\Object\d_lowspeed.s $PROJ_DIR$\..\Object\c_cmd.r79 - $PROJ_DIR$\..\Object\c_lowspeed.r79 - $PROJ_DIR$\..\Object\c_display.pbi - $PROJ_DIR$\..\Object\d_ioctrl.s - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\d_timer.r - $PROJ_DIR$\..\..\Source\c_display.h - $PROJ_DIR$\..\..\Source\RCXintro_12.txt - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\Submenu04.rms - $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\..\..\Source\Submenu02.rms - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $PROJ_DIR$\..\..\Source\d_button.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt - $PROJ_DIR$\..\..\Source\c_output.h - $PROJ_DIR$\..\..\Source\d_loader.h - $PROJ_DIR$\..\..\Source\Port.txt - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_bt.r - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\..\..\Source\d_output.h - $PROJ_DIR$\..\..\Source\modules.h - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\..\..\Source\c_button.iom - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_usb.r - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\Include\sam7s256.h - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\c_ui.iom - $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\d_led.r $PROJ_DIR$\..\..\Source\c_ui.h $PROJ_DIR$\..\..\Source\Ok.txt - $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\d_loader.r - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\d_usb.h - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\RCXintro_15.txt - $PROJ_DIR$\..\..\Source\d_lowspeed.r - $PROJ_DIR$\..\..\Source\c_ioctrl.iom - $PROJ_DIR$\..\..\Source\Submenu07.rms - $PROJ_DIR$\..\..\Source\c_input.iom - $PROJ_DIR$\..\..\Source\RCXintro_14.txt - $PROJ_DIR$\..\..\Source\RCXintro_5.txt - $PROJ_DIR$\..\..\Source\d_bt.h - $PROJ_DIR$\..\..\Source\d_timer.h - $PROJ_DIR$\..\..\Source\Status.txt - $PROJ_DIR$\..\..\Source\Step.txt - $PROJ_DIR$\..\..\Source\c_sound.iom - $PROJ_DIR$\..\..\Source\c_display.iom - $PROJ_DIR$\..\..\Source\c_comm.iom - $PROJ_DIR$\..\..\Source\c_comm.h - $PROJ_DIR$\..\..\Source\Display.txt - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\Lib\dl4tptinl8n.h - $PROJ_DIR$\..\..\Source\Cursor.txt - $PROJ_DIR$\..\..\Source\c_button.h - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\Running.txt - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $TOOLKIT_DIR$\inc\stdio.h - $PROJ_DIR$\..\..\Source\Info.txt - $PROJ_DIR$\..\..\Source\Test1.txt - $PROJ_DIR$\..\..\Source\c_loader.iom - $PROJ_DIR$\..\..\Source\d_button.r - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\d_led.r $PROJ_DIR$\..\Object\d_display.r79 + $PROJ_DIR$\..\Object\d_ioctrl.s + $PROJ_DIR$\..\Object\d_display.pbi + $TOOLKIT_DIR$\inc\limits.h $PROJ_DIR$\..\Object\d_bt.r79 $PROJ_DIR$\..\Object\d_button.s $PROJ_DIR$\..\Object\c_led.r79 $PROJ_DIR$\..\Object\d_input.pbi + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_button.h $PROJ_DIR$\..\Object\d_sound.pbi $PROJ_DIR$\..\Object\d_sound.s - $PROJ_DIR$\..\..\Source\Ui.txt - $PROJ_DIR$\..\..\Source\d_sound.r - $TOOLKIT_DIR$\inc\xlocale_c.h - $PROJ_DIR$\..\..\Source\d_sound.h - $TOOLKIT_DIR$\inc\yvals.h - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\d_hispeed.h - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\..\..\Source\d_hispeed.r - $PROJ_DIR$\..\..\Source\stdconst.h - $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.h - $TOOLKIT_DIR$\inc\string.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt $PROJ_DIR$\..\Object\d_output.r79 $PROJ_DIR$\..\Object\d_usb.s $PROJ_DIR$\..\Object\c_cmd.pbi - $PROJ_DIR$\..\Object\d_display.pbi + $TOOLKIT_DIR$\inc\ymath.h $PROJ_DIR$\..\Object\m_sched.r79 $PROJ_DIR$\..\Object\d_loader.s $PROJ_DIR$\..\Object\d_button.pbi @@ -1032,16 +1008,39 @@ $PROJ_DIR$\..\Object\d_usb.pbi $PROJ_DIR$\..\Object\d_hispeed.s $PROJ_DIR$\..\Object\c_input.s - $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\Object\c_lowspeed.pbi $PROJ_DIR$\..\Object\c_button.r79 $PROJ_DIR$\..\Object\LMS_ARM.map $PROJ_DIR$\..\Object\c_comm.s $PROJ_DIR$\..\Object\d_timer.s - $TOOLKIT_DIR$\inc\ymath.h $PROJ_DIR$\..\Object\c_input.pbi - $PROJ_DIR$\..\Object\c_lowspeed.pbi - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Test2.txt + $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\Wait.txt $PROJ_DIR$\..\..\Source\c_display.c $PROJ_DIR$\..\..\Source\c_input.c $PROJ_DIR$\..\..\Source\c_ioctrl.c @@ -1051,111 +1050,82 @@ $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\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c - $PROJ_DIR$\..\..\..\..\lms_nbcnxc_128\AT91SAM7S256\Source\c_comm.c - $PROJ_DIR$\..\..\..\..\lms_nbcnxc_128\AT91SAM7S256\Source\d_output.c + $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\c_button.c + [ROOT_NODE] - BICOMP - 47 - - - ICCARM - 209 + XLINK + 113 186 102 - - - BICOMP - 189 110 158 116 99 - - - ICCARM - 189 110 158 116 99 - - $PROJ_DIR$\..\..\Source\c_cmd.c - BICOMP - 196 + ICCARM + 154 - ICCARM - 85 + BICOMP + 172 - BICOMP - 189 110 185 168 143 165 124 150 116 151 152 105 138 120 21 117 93 147 162 181 96 108 104 11 16 192 89 54 213 208 155 + ICCARM + 58 85 51 44 20 42 197 27 91 28 29 77 239 195 78 191 194 24 37 50 12 35 83 190 10 62 61 69 119 173 161 34 - ICCARM - 189 110 185 168 143 165 124 150 116 151 152 105 138 120 21 117 93 147 162 181 96 156 108 104 11 16 192 89 54 213 208 155 + BICOMP + 58 85 51 44 20 42 197 27 91 28 29 77 239 195 78 191 194 24 37 50 12 83 190 10 62 61 69 119 173 161 34 - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\c_comm.c - XLINK - 44 210 36 + ICCARM + 118 - - - - $PROJ_DIR$\..\Object\d_display.s - - AARM - 170 + BICOMP + 93 - - - $PROJ_DIR$\..\Object\c_ui.s - + - AARM - 67 + ICCARM + 58 85 29 42 18 197 51 28 30 236 52 22 61 50 12 35 83 190 10 62 67 14 7 66 69 215 48 56 86 201 - - - - $PROJ_DIR$\..\Object\m_sched.s - - AARM - 198 + BICOMP + 58 85 29 42 18 197 51 28 30 236 52 22 61 50 12 83 190 10 62 67 14 7 66 69 215 48 56 86 201 - + $PROJ_DIR$\..\Object\c_button.s AARM - 209 + 185 @@ -1164,7 +1134,7 @@ AARM - 32 + 98 @@ -1173,58 +1143,67 @@ BILINK - 45 47 196 27 87 214 55 26 215 61 81 66 82 200 197 50 174 34 39 46 25 175 60 205 57 + 101 116 172 93 144 189 124 96 184 130 150 135 151 176 160 114 165 100 105 111 95 168 128 181 126 - $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\Object\c_ui.s - XLINK - 210 36 + AARM + 136 - + + + $PROJ_DIR$\..\Object\m_sched.s + - XLINK - 78 64 76 209 85 49 72 33 32 40 86 37 38 67 171 68 170 75 204 56 28 43 194 48 53 63 198 58 + AARM + 174 - + - $PROJ_DIR$\..\Object\Cstartup_SAM7.s + $PROJ_DIR$\..\Object\d_display.s AARM - 76 + 158 - $PROJ_DIR$\..\Object\c_output.s + $PROJ_DIR$\..\Object\LMS_ARM.d79 - AARM - 37 + XLINK + 186 102 + + + XLINK + 147 133 145 185 154 118 138 99 98 106 142 103 104 136 162 137 158 141 180 125 94 90 170 117 122 132 174 127 + + - $PROJ_DIR$\..\Object\d_bt.s + $PROJ_DIR$\..\Object\Cstartup_SAM7.s AARM - 171 + 145 - $PROJ_DIR$\..\Object\d_input.s + $PROJ_DIR$\..\Object\c_output.s AARM - 204 + 103 @@ -1233,13 +1212,13 @@ ICCARM - 173 + 164 ICCARM - 189 110 35 73 59 + 58 85 92 140 120 @@ -1248,22 +1227,40 @@ ICCARM - 70 + 139 ICCARM - 189 138 120 21 59 169 + 58 239 195 78 120 155 + + $PROJ_DIR$\..\Object\d_bt.s + + + AARM + 162 + + + + + $PROJ_DIR$\..\Object\d_input.s + + + AARM + 180 + + + $PROJ_DIR$\..\Object\c_sound.s AARM - 38 + 104 @@ -1272,7 +1269,7 @@ AARM - 86 + 142 @@ -1281,7 +1278,7 @@ AARM - 72 + 138 @@ -1290,7 +1287,7 @@ AARM - 43 + 90 @@ -1299,7 +1296,7 @@ AARM - 56 + 125 @@ -1308,7 +1305,7 @@ AARM - 68 + 137 @@ -1317,7 +1314,7 @@ AARM - 48 + 117 @@ -1326,7 +1323,7 @@ AARM - 63 + 132 @@ -1335,7 +1332,7 @@ AARM - 28 + 94 @@ -1344,7 +1341,7 @@ AARM - 85 + 154 @@ -1353,7 +1350,7 @@ AARM - 40 + 106 @@ -1362,7 +1359,7 @@ AARM - 194 + 170 @@ -1371,7 +1368,7 @@ AARM - 75 + 141 @@ -1380,7 +1377,7 @@ AARM - 33 + 99 @@ -1389,7 +1386,7 @@ AARM - 49 + 118 @@ -1398,551 +1395,551 @@ AARM - 53 + 122 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - BICOMP - 27 + ICCARM + 141 - ICCARM - 49 + BICOMP + 114 - BICOMP - 189 110 152 165 141 124 185 151 153 135 186 146 192 181 96 108 104 11 16 8 128 14 7 89 12 179 187 111 119 + ICCARM + 58 239 195 78 52 57 - ICCARM - 189 110 152 165 141 124 185 151 153 135 186 146 192 181 96 156 108 104 11 16 8 128 14 7 89 12 179 187 111 119 + BICOMP + 58 239 195 78 52 57 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_input.c - BICOMP - 45 + ICCARM + 180 - ICCARM - 76 + BICOMP + 165 - BICOMP - 18 + ICCARM + 58 239 195 78 237 20 193 238 - ICCARM - 18 + BICOMP + 58 239 195 78 237 20 193 238 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - BICOMP - 87 + ICCARM + 125 - ICCARM - 72 + BICOMP + 100 - BICOMP - 192 181 96 108 104 11 16 189 110 151 91 6 + ICCARM + 61 50 12 35 83 190 10 62 58 239 195 78 166 87 - ICCARM - 192 181 96 156 108 104 11 16 189 110 151 91 6 + BICOMP + 61 50 12 83 190 10 62 58 239 195 78 166 87 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_loader.c - BICOMP - 214 + ICCARM + 94 - ICCARM - 33 + BICOMP + 105 - BICOMP - 189 110 136 143 1 168 165 192 181 96 108 104 11 16 + ICCARM + 58 85 239 195 78 0 15 61 50 12 35 83 190 10 62 67 14 7 66 69 215 48 56 86 201 - ICCARM - 189 110 136 143 1 168 165 192 181 96 156 108 104 11 16 + BICOMP + 58 85 239 195 78 0 15 61 50 12 83 190 10 62 67 14 7 66 69 215 48 56 86 201 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - BICOMP - 55 + ICCARM + 90 - ICCARM - 32 + BICOMP + 111 - BICOMP - 189 110 141 191 98 + ICCARM + 58 239 195 78 79 16 - ICCARM - 189 110 141 191 98 + BICOMP + 58 239 195 78 79 16 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\d_output.c - BICOMP - 26 + ICCARM + 170 - ICCARM - 40 + BICOMP + 95 - BICOMP - 189 110 165 141 102 15 192 181 96 108 104 11 16 + ICCARM + 58 239 195 78 84 73 - ICCARM - 189 110 165 141 102 15 192 181 96 156 108 104 11 16 + BICOMP + 58 239 195 78 84 73 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_sound.c - BICOMP - 215 + ICCARM + 117 - ICCARM - 86 + BICOMP + 168 - BICOMP - 189 110 105 143 94 22 + ICCARM + 58 239 195 78 49 47 152 - ICCARM - 189 110 105 143 94 22 + BICOMP + 58 239 195 78 49 47 152 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_timer.c - BICOMP - 61 + ICCARM + 122 - ICCARM - 37 + BICOMP + 128 - BICOMP - 162 181 96 108 104 11 16 23 189 110 168 101 109 151 + ICCARM + 58 239 195 78 24 70 - ICCARM - 162 181 96 156 108 104 11 16 23 189 110 168 101 109 151 + BICOMP + 58 239 195 78 24 70 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\d_usb.c - BICOMP - 81 + ICCARM + 132 - ICCARM - 38 + BICOMP + 181 - BICOMP - 89 181 96 108 104 11 16 192 189 110 150 165 133 180 + ICCARM + 58 239 195 78 236 6 - ICCARM - 89 181 96 156 108 104 11 16 192 189 110 150 165 133 180 + BICOMP + 58 239 195 78 236 6 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\m_sched.c - BICOMP - 66 + ICCARM + 174 - ICCARM - 67 + BICOMP + 126 - BICOMP - 162 181 96 108 104 11 16 192 8 128 14 7 89 12 179 187 111 119 189 110 124 126 138 120 21 151 165 116 150 143 168 141 185 152 105 154 112 134 149 157 160 103 127 13 17 163 106 184 130 2 190 145 182 100 115 19 132 193 92 159 144 139 161 148 121 167 177 3 125 97 77 95 9 131 142 239 10 164 122 + ICCARM + 58 85 239 195 78 54 30 237 20 33 91 8 234 71 200 2 191 194 51 59 156 - ICCARM - 162 181 96 156 108 104 11 16 192 8 128 14 7 89 12 179 187 111 119 189 110 124 126 138 120 21 151 165 116 150 143 168 141 185 152 105 154 112 134 149 157 160 103 127 13 17 163 106 184 130 2 190 145 182 100 115 19 132 193 92 159 144 139 161 148 121 167 177 3 125 97 77 95 9 131 142 239 10 164 122 + BICOMP + 58 85 239 195 78 54 30 237 20 33 91 8 234 71 200 2 191 194 51 59 156 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\c_display.c - AARM - 64 + ICCARM + 138 + + + BICOMP + 144 - AARM - 123 + ICCARM + 61 50 12 35 83 190 10 62 58 85 28 71 65 + + + BICOMP + 61 50 12 83 190 10 62 58 85 28 71 65 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\c_input.c - BICOMP - 82 + ICCARM + 99 - ICCARM - 171 + BICOMP + 189 - BICOMP - 189 110 138 120 21 146 107 192 181 96 108 104 11 16 + ICCARM + 58 85 237 20 193 44 42 61 50 12 35 83 190 10 62 - ICCARM - 189 110 138 120 21 146 107 192 181 96 156 108 104 11 16 + BICOMP + 58 85 237 20 193 44 42 61 50 12 83 190 10 62 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c - BICOMP - 200 + ICCARM + 98 - ICCARM - 68 + BICOMP + 124 - BICOMP - 189 138 120 21 99 166 + ICCARM + 58 85 18 59 166 - ICCARM - 189 138 120 21 99 166 + BICOMP + 58 85 18 59 166 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\c_loader.c - BICOMP - 197 + ICCARM + 106 - ICCARM - 170 + BICOMP + 96 - BICOMP - 189 138 120 21 6 114 + ICCARM + 58 85 42 18 0 8 61 50 12 35 83 190 10 62 - ICCARM - 189 138 120 21 6 114 + BICOMP + 58 85 42 18 0 8 61 50 12 83 190 10 62 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c - BICOMP - 50 + ICCARM + 142 - ICCARM - 75 + BICOMP + 184 - BICOMP - 189 138 120 21 186 188 + ICCARM + 58 85 77 20 200 79 - ICCARM - 189 138 120 21 186 188 + BICOMP + 58 85 77 20 200 79 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\c_output.c - BICOMP - 174 + ICCARM + 103 - ICCARM - 204 + BICOMP + 130 - BICOMP - 189 138 120 21 136 143 1 137 + ICCARM + 37 50 12 35 83 190 10 62 80 58 85 44 2 84 28 - ICCARM - 189 138 120 21 136 143 1 137 + BICOMP + 37 50 12 83 190 10 62 80 58 85 44 2 84 28 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\c_sound.c - BICOMP - 34 + ICCARM + 104 - ICCARM - 56 + BICOMP + 150 - BICOMP - 192 181 96 108 104 11 16 189 138 120 21 98 113 + ICCARM + 69 50 12 35 83 190 10 62 61 58 85 27 42 234 49 - ICCARM - 192 181 96 156 108 104 11 16 189 138 120 21 98 113 + BICOMP + 69 50 12 83 190 10 62 61 58 85 27 42 234 49 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_ui.c - BICOMP - 39 + ICCARM + 136 - ICCARM - 28 + BICOMP + 135 - BICOMP - 189 110 138 120 21 102 129 192 181 96 108 104 11 16 8 128 14 7 89 12 179 187 111 119 + ICCARM + 37 50 12 35 83 190 10 62 61 67 14 7 66 69 215 48 56 86 201 58 85 197 156 239 195 78 28 42 91 27 20 44 18 51 29 77 31 89 235 26 32 36 1 157 216 64 39 81 55 231 76 60 23 53 3 5 74 233 63 11 38 21 17 40 25 202 46 45 75 198 13 146 199 68 232 19 213 192 41 203 - ICCARM - 189 110 138 120 21 102 129 192 181 96 156 108 104 11 16 8 128 14 7 89 12 179 187 111 119 + BICOMP + 37 50 12 83 190 10 62 61 67 14 7 66 69 215 48 56 86 201 58 85 197 156 239 195 78 28 42 91 27 20 44 18 51 29 77 31 89 235 26 32 36 1 157 216 64 39 81 55 231 76 60 23 53 3 5 74 233 63 11 38 21 17 40 25 202 46 45 75 198 13 146 199 68 232 19 213 192 41 203 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\Include\Cstartup.s79 - BICOMP - 46 - - - ICCARM - 43 + AARM + 133 - BICOMP - 189 138 120 21 22 140 - - - ICCARM - 189 138 120 21 22 140 + AARM + 196 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - BICOMP - 25 + ICCARM + 145 - ICCARM - 194 + BICOMP + 101 - BICOMP - 189 138 120 21 109 20 + ICCARM + 72 - ICCARM - 189 138 120 21 109 20 + BICOMP + 72 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_bt.c - BICOMP - 175 + ICCARM + 162 - ICCARM - 48 + BICOMP + 151 - BICOMP - 189 138 120 21 180 178 83 + ICCARM + 58 85 239 195 78 22 82 61 50 12 35 83 190 10 62 - ICCARM - 189 138 120 21 180 178 83 + BICOMP + 58 85 239 195 78 22 82 61 50 12 83 190 10 62 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_button.c - BICOMP - 60 + ICCARM + 137 - ICCARM - 53 + BICOMP + 176 - BICOMP - 189 138 120 21 147 90 + ICCARM + 58 239 195 78 167 43 - ICCARM - 189 138 120 21 147 90 + BICOMP + 58 239 195 78 167 43 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_display.c - BICOMP - 205 + ICCARM + 158 - ICCARM - 63 + BICOMP + 160 - BICOMP - 189 138 120 21 135 118 + ICCARM + 58 239 195 78 65 88 - ICCARM - 189 138 120 21 135 118 + BICOMP + 58 239 195 78 65 88 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_button.c - BICOMP - 57 + ICCARM + 185 - ICCARM - 198 + BICOMP + 116 - BICOMP - 189 110 138 120 21 183 153 136 143 158 116 15 133 91 94 101 117 93 185 191 126 + ICCARM + 58 85 33 91 167 - ICCARM - 189 110 138 120 21 183 153 136 143 158 116 15 133 91 94 101 117 93 185 191 126 + BICOMP + 58 85 33 91 167 @@ -1950,137 +1947,30 @@ Flash Debug - $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\d_display.h - $TOOLKIT_DIR$\inc\xmtx.h - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\BtTest.inc - $TOOLKIT_DIR$\inc\DLib_Threads.h - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\d_usb.r $TOOLKIT_DIR$\inc\xtls.h $PROJ_DIR$\..\..\Source\c_loader.h - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\RCXintro_9.txt - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\Object\d_output.pbi - $PROJ_DIR$\..\Object\c_loader.pbi - $PROJ_DIR$\..\Object\c_comm.pbi - $PROJ_DIR$\..\Object\d_loader.r79 - $PROJ_DIR$\..\Object\c_ioctrl.r79 - $PROJ_DIR$\..\Object\c_input.r79 - $PROJ_DIR$\..\Object\d_ioctrl.pbi - $PROJ_DIR$\..\..\Source\c_led.iom - $PROJ_DIR$\..\Object\c_output.r79 - $PROJ_DIR$\..\Object\c_sound.r79 - $PROJ_DIR$\..\Object\d_loader.pbi - $PROJ_DIR$\..\Object\c_loader.r79 - $PROJ_DIR$\..\Object\LMS_ARM.pbd - $PROJ_DIR$\..\Object\d_lowspeed.r79 - $PROJ_DIR$\..\Object\LMS_ARM.d79 - $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi - $PROJ_DIR$\..\Object\d_lowspeed.pbi - $PROJ_DIR$\..\Object\c_button.pbi - $PROJ_DIR$\..\Object\d_sound.r79 - $PROJ_DIR$\..\Object\c_comm.r79 - $PROJ_DIR$\..\Object\d_hispeed.pbi - $PROJ_DIR$\..\Object\d_timer.r79 - $TOOLKIT_DIR$\inc\math.h - $PROJ_DIR$\..\Object\c_ioctrl.pbi - $PROJ_DIR$\..\Object\d_ioctrl.r79 - $PROJ_DIR$\..\Object\m_sched.pbi - $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 - $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\Object\d_timer.pbi - $PROJ_DIR$\..\Object\c_output.pbi - $PROJ_DIR$\..\Object\d_usb.r79 - $PROJ_DIR$\..\Object\Cstartup.r79 - $PROJ_DIR$\..\Object\c_ui.pbi - $PROJ_DIR$\..\Object\c_ui.r79 - $PROJ_DIR$\..\Object\d_button.r79 - $PROJ_DIR$\..\..\Source\c_led.c - $PROJ_DIR$\..\Object\d_led.r79 - $PROJ_DIR$\..\..\Source\d_led.c - $PROJ_DIR$\..\Object\c_display.r79 - $PROJ_DIR$\..\..\Source\c_led.h - $PROJ_DIR$\..\Object\d_hispeed.r79 - $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 - $PROJ_DIR$\..\..\Source\Submenu03.rms - $PROJ_DIR$\at91SAM7S256_Remap.xcl - $PROJ_DIR$\..\Object\c_sound.pbi - $PROJ_DIR$\..\Object\d_bt.pbi - $PROJ_DIR$\..\..\Source\d_sound_adpcm.r - $PROJ_DIR$\..\Object\c_cmd.r79 - $PROJ_DIR$\..\Object\c_lowspeed.r79 - $PROJ_DIR$\..\Object\c_display.pbi - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\d_timer.r - $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_comm.c + $TOOLKIT_DIR$\inc\DLib_Threads.h $PROJ_DIR$\..\..\Source\RCXintro_12.txt - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\Submenu04.rms $TOOLKIT_DIR$\inc\DLib_Defaults.h $PROJ_DIR$\..\..\Source\Submenu02.rms - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $PROJ_DIR$\..\..\Source\d_button.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt - $PROJ_DIR$\..\..\Source\c_output.h - $PROJ_DIR$\..\..\Source\d_loader.h - $PROJ_DIR$\..\..\Source\Port.txt - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_bt.r - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\..\..\Source\d_output.h - $PROJ_DIR$\..\..\Source\modules.h - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\..\..\Source\c_button.iom - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_usb.r - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\Include\sam7s256.h - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\c_ui.iom - $PROJ_DIR$\..\..\Source\Submenu01.rms - $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\Ok.txt $TOOLKIT_DIR$\inc\xlocale.h $PROJ_DIR$\..\..\Source\d_loader.r - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\d_usb.h - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\..\..\Source\c_ioctrl.iom $PROJ_DIR$\..\..\Source\Submenu07.rms $PROJ_DIR$\..\..\Source\c_input.iom $PROJ_DIR$\..\..\Source\RCXintro_14.txt - $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\..\..\Source\d_timer.h $PROJ_DIR$\..\..\Source\Status.txt $PROJ_DIR$\..\..\Source\Step.txt @@ -2089,81 +1979,165 @@ $PROJ_DIR$\..\..\Source\c_comm.iom $PROJ_DIR$\..\..\Source\c_comm.h $PROJ_DIR$\..\..\Source\Display.txt - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\Lib\dl4tptinl8n.h $PROJ_DIR$\..\..\Source\Cursor.txt $PROJ_DIR$\..\..\Source\c_button.h - $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\Lib\dl4tptinl8n.h $PROJ_DIR$\..\..\Source\Running.txt - $PROJ_DIR$\..\..\Source\RCXintro_16.txt $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\RCXintro_13.txt $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt $PROJ_DIR$\..\..\Source\Test1.txt $PROJ_DIR$\..\..\Source\c_loader.iom $PROJ_DIR$\..\..\Source\d_button.r - $PROJ_DIR$\..\..\Source\Connections.txt $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\d_led.r - $PROJ_DIR$\..\Object\d_display.r79 - $PROJ_DIR$\..\Object\d_bt.r79 - $PROJ_DIR$\..\Object\c_led.r79 - $PROJ_DIR$\..\Object\d_input.pbi - $PROJ_DIR$\..\Object\d_sound.pbi $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Connections.txt $PROJ_DIR$\..\..\Source\d_sound.r $TOOLKIT_DIR$\inc\xlocale_c.h $PROJ_DIR$\..\..\Source\d_sound.h $TOOLKIT_DIR$\inc\yvals.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.h $PROJ_DIR$\..\..\Source\RCXintro_6.txt $PROJ_DIR$\..\Include\sam7s256.c $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\d_hispeed.h $TOOLKIT_DIR$\inc\xtinfo.h $PROJ_DIR$\..\..\Source\d_hispeed.r $PROJ_DIR$\..\..\Source\stdconst.h - $PROJ_DIR$\..\..\Source\RCXintro_4.txt $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_4.txt $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\ysizet.h $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\d_display.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\modules.h + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\Object\d_lowspeed.r79 + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_led.iom + $PROJ_DIR$\..\Object\c_comm.pbi + $PROJ_DIR$\..\..\Source\c_bt.c + $PROJ_DIR$\..\Object\d_loader.r79 + $PROJ_DIR$\..\Object\d_output.pbi + $PROJ_DIR$\..\Object\c_loader.pbi + $PROJ_DIR$\..\Object\c_ioctrl.r79 + $PROJ_DIR$\..\Object\c_input.r79 + $PROJ_DIR$\..\Object\d_ioctrl.pbi + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_output.r79 + $PROJ_DIR$\..\Object\c_sound.r79 + $PROJ_DIR$\..\Object\d_loader.pbi + $PROJ_DIR$\..\Object\c_loader.r79 + $PROJ_DIR$\..\Object\LMS_ARM.pbd + $PROJ_DIR$\..\Object\d_lowspeed.pbi $PROJ_DIR$\SrcIAR\Cstartup.s79 - $PROJ_DIR$\..\Object\d_sensor.r79 - $PROJ_DIR$\..\Object\d_net.r79 - $PROJ_DIR$\..\Include\Board.h - $PROJ_DIR$\..\Object\c_motor.r79 - $PROJ_DIR$\..\..\include\AT91SAM7S64_inc.h - $PROJ_DIR$\..\Object\c_bt.r79 - $PROJ_DIR$\..\Object\c_usb.r79 - $PROJ_DIR$\..\..\include\AT91SAM7S64.h + $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\Object\d_hispeed.pbi + $PROJ_DIR$\..\Object\c_button.pbi + $PROJ_DIR$\..\Object\d_sound.r79 + $PROJ_DIR$\..\Object\c_comm.r79 + $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\..\Source\d_led.h + $PROJ_DIR$\..\Object\d_timer.r79 + $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\Object\c_ioctrl.pbi + $PROJ_DIR$\..\Object\d_ioctrl.r79 + $PROJ_DIR$\..\Object\m_sched.pbi + $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 + $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\Object\c_output.pbi + $PROJ_DIR$\..\Object\d_usb.r79 + $PROJ_DIR$\..\Object\Cstartup.r79 + $PROJ_DIR$\..\Object\c_ui.pbi + $PROJ_DIR$\..\Object\c_ui.r79 + $PROJ_DIR$\..\Object\d_button.r79 + $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\Object\d_led.r79 + $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\Object\c_sound.pbi + $PROJ_DIR$\..\Object\d_bt.pbi + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + $PROJ_DIR$\..\Object\c_cmd.r79 + $PROJ_DIR$\..\..\Source\d_led.r + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\Object\d_display.r79 + $PROJ_DIR$\..\Object\d_display.pbi + $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\Object\d_bt.r79 + $PROJ_DIR$\..\Object\c_led.r79 + $PROJ_DIR$\..\Object\d_input.pbi + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\Object\d_sound.pbi $PROJ_DIR$\..\Object\d_output.r79 $PROJ_DIR$\..\Object\c_cmd.pbi - $PROJ_DIR$\..\Object\d_display.pbi + $TOOLKIT_DIR$\inc\ymath.h $PROJ_DIR$\..\Object\m_sched.r79 $PROJ_DIR$\..\Object\d_button.pbi $PROJ_DIR$\..\Object\d_input.r79 $PROJ_DIR$\..\Object\d_usb.pbi - $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\Object\c_lowspeed.pbi $PROJ_DIR$\..\Object\c_button.r79 $PROJ_DIR$\..\Object\LMS_ARM.map - $TOOLKIT_DIR$\inc\ymath.h $PROJ_DIR$\..\Object\c_input.pbi - $PROJ_DIR$\..\Object\c_lowspeed.pbi - $PROJ_DIR$\..\..\Source\c_bt.c $PROJ_DIR$\..\..\Source\c_net.c + $PROJ_DIR$\..\Object\d_sensor.r79 + $PROJ_DIR$\..\Object\d_net.r79 + $PROJ_DIR$\..\Include\Board.h + $PROJ_DIR$\..\Object\c_motor.r79 + $PROJ_DIR$\..\..\include\AT91SAM7S64_inc.h + $PROJ_DIR$\..\Object\c_bt.r79 + $PROJ_DIR$\..\Object\c_usb.r79 + $PROJ_DIR$\..\..\include\AT91SAM7S64.h $PROJ_DIR$\..\..\Source\d_avrcomm.h $PROJ_DIR$\..\..\Source\c_net.h $PROJ_DIR$\..\Object\c_hispeed.r79 $PROJ_DIR$\..\..\Source\d_sensor.c $PROJ_DIR$\..\..\Source\c_usb.c $PROJ_DIR$\..\..\Source\c_bt.iom - $PROJ_DIR$\..\Object\c_net.r79 $PROJ_DIR$\..\..\Source\d_net.c + $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\Object\c_net.r79 + $PROJ_DIR$\..\..\Source\c_sensor.c $PROJ_DIR$\..\..\Source\c_motor.c $PROJ_DIR$\..\..\Source\d_sensor.r $PROJ_DIR$\..\Object\d_avrcomm.r79 $PROJ_DIR$\..\..\Source\d_net.r $PROJ_DIR$\..\..\Source\d_avrcomm.r - $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_usb.h $PROJ_DIR$\..\..\Source\c_motor.iom $PROJ_DIR$\..\..\Source\d_net.h $PROJ_DIR$\..\..\Source\c_bt.h @@ -2171,16 +2145,16 @@ $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c $PROJ_DIR$\..\Object\d_motor.r79 $PROJ_DIR$\..\Object\LMS_ARM.sim - $PROJ_DIR$\..\..\Source\d_motor.c - $PROJ_DIR$\Flash_Debug\Obj\Cstartup_SAM7.r79 - $PROJ_DIR$\..\..\Source\c_usb.h $PROJ_DIR$\..\..\Source\c_avrcomm.h + $PROJ_DIR$\Flash_Debug\Obj\Cstartup_SAM7.r79 $PROJ_DIR$\..\..\Source\c_avrcomm.c $PROJ_DIR$\..\..\Source\c_hispeed.h $PROJ_DIR$\..\Object\c_avrcomm.r79 $PROJ_DIR$\..\..\Source\c_sensor.h - $PROJ_DIR$\..\..\include\lib_AT91SAM7S64.h $PROJ_DIR$\..\..\Source\d_avrcomm.c + $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\include\lib_AT91SAM7S64.h + $PROJ_DIR$\Flash_Debug\Obj\main.r79 $PROJ_DIR$\..\..\Source\c_hispeed.iom $PROJ_DIR$\..\..\Source\c_hispeed.c $PROJ_DIR$\..\..\Source\d_motor.h @@ -2188,18 +2162,41 @@ $PROJ_DIR$\..\..\Source\d_sensor.h $PROJ_DIR$\..\..\Source\c_sensor.iom $PROJ_DIR$\..\src\main.c - $PROJ_DIR$\..\..\Source\main.c $PROJ_DIR$\..\Include\lib_AT91SAM7S64.h + $PROJ_DIR$\SrcIAR\Board.h $PROJ_DIR$\..\..\Source\c_motor.h $PROJ_DIR$\..\Include\AT91SAM7S64.h $PROJ_DIR$\..\Include\ioat91sam7s64.h - $PROJ_DIR$\SrcIAR\Board.h - $PROJ_DIR$\..\Object\main.r79 - $PROJ_DIR$\Flash_Debug\Obj\main.r79 $PROJ_DIR$\Flash_Debug\Obj\Cstartup.r79 + $PROJ_DIR$\..\Object\main.r79 $PROJ_DIR$\..\Object\c_sensor.r79 - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Test2.txt + $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\Wait.txt $PROJ_DIR$\..\..\Source\c_display.c $PROJ_DIR$\..\..\Source\c_input.c $PROJ_DIR$\..\..\Source\c_ioctrl.c @@ -2209,157 +2206,157 @@ $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\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\c_button.c + [ROOT_NODE] - BICOMP - 40 + XLINK + 164 197 109 + + + + $PROJ_DIR$\..\..\Source\c_cmd.c + ICCARM - 193 + 142 - - BICOMP - 171 94 142 100 83 + 156 + + ICCARM - 171 94 142 100 83 + 58 85 51 44 20 42 230 27 91 28 29 77 272 228 78 224 227 24 37 50 12 35 83 223 10 62 61 69 114 157 148 34 + + + BICOMP + 58 85 51 44 20 42 230 27 91 28 29 77 272 228 78 224 227 24 37 50 12 83 223 10 62 61 69 114 157 148 34 - $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\..\Source\c_comm.c - BICOMP - 186 + ICCARM + 113 - ICCARM - 70 + BICOMP + 93 - BICOMP - 171 94 167 152 127 149 108 134 100 135 136 89 122 104 20 101 77 131 146 163 80 92 88 10 15 174 73 45 195 192 139 + ICCARM + 58 85 29 42 18 230 51 28 30 269 52 22 61 50 12 35 83 223 10 62 67 14 7 66 69 248 48 56 86 234 - ICCARM - 171 94 167 152 127 149 108 134 100 135 136 89 122 104 20 101 77 131 146 163 80 140 92 88 10 15 174 73 45 195 192 139 + BICOMP + 58 85 29 42 18 230 51 28 30 269 52 22 61 50 12 83 223 10 62 67 14 7 66 69 248 48 56 86 234 - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\c_bt.c - XLINK - 194 220 37 + ICCARM + 172 - - - $PROJ_DIR$\..\Object\LMS_ARM.pbd - BILINK - 38 40 186 25 72 196 46 24 197 52 67 55 68 189 187 43 157 29 33 39 23 158 51 191 48 + ICCARM + 58 85 180 193 22 51 - $PROJ_DIR$\..\Object\LMS_ARM.d79 - - - XLINK - 194 220 - - + $PROJ_DIR$\..\Object\LMS_ARM.pbd - XLINK - 66 54 64 193 70 42 61 28 27 34 71 31 32 56 155 57 154 63 190 47 26 36 185 41 44 53 188 49 + BILINK + 101 111 156 93 135 165 118 97 162 124 139 127 140 159 147 110 151 100 104 107 96 154 122 161 120 - $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\SrcIAR\Cstartup.s79 - ICCARM - 156 + AARM + 220 - ICCARM - 171 94 30 62 50 + AARM + 171 - $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\Object\LMS_ARM.d79 - ICCARM - 59 + XLINK + 164 197 - ICCARM - 171 122 104 20 50 153 + XLINK + 138 126 136 163 142 113 130 99 98 105 134 102 103 128 149 129 146 133 160 119 95 90 155 112 116 125 158 121 - $PROJ_DIR$\SrcIAR\Cstartup.s79 + $PROJ_DIR$\..\..\Source\c_led.c - AARM - 246 + ICCARM + 150 - AARM - 181 + ICCARM + 58 85 92 132 115 - $PROJ_DIR$\..\..\Source\c_bt.c + $PROJ_DIR$\..\..\Source\d_led.c ICCARM - 182 + 131 ICCARM - 171 94 205 216 130 167 + 58 272 228 78 115 143 @@ -2368,13 +2365,13 @@ ICCARM - 206 + 183 ICCARM - 171 201 215 + 58 176 192 @@ -2383,13 +2380,13 @@ ICCARM - 177 + 167 ICCARM - 171 122 104 242 235 209 + 58 272 228 219 212 186 @@ -2398,13 +2395,13 @@ ICCARM - 183 + 173 ICCARM - 171 94 217 223 119 + 58 85 194 190 269 @@ -2413,28 +2410,28 @@ ICCARM - 178 + 168 ICCARM - 171 122 104 242 215 211 + 58 272 228 219 192 188 - $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\d_motor.c ICCARM - 180 + 196 ICCARM - 171 94 214 240 233 + 58 272 228 219 210 211 @@ -2443,43 +2440,43 @@ ICCARM - 247 + 222 ICCARM - 171 94 236 228 235 + 58 85 213 203 212 - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_motor.c ICCARM - 222 + 170 ICCARM - 243 184 229 + 58 85 191 217 210 - $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c ICCARM - 219 + 199 ICCARM - 171 122 104 242 233 234 + 216 174 206 @@ -2488,13 +2485,13 @@ ICCARM - 227 + 202 ICCARM - 171 224 200 + 58 198 175 @@ -2503,602 +2500,602 @@ ICCARM - 210 + 187 ICCARM - 171 122 104 242 200 212 + 58 272 228 219 175 189 - $PROJ_DIR$\..\..\Source\c_hispeed.c + $PROJ_DIR$\..\..\Source\main.c ICCARM - 202 + 221 ICCARM - 171 94 231 226 168 + 169 218 215 - $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\c_hispeed.c ICCARM - 245 + 177 ICCARM - 243 184 229 + 58 85 208 201 52 - $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\src\main.c ICCARM - 244 + 207 ICCARM - 179 241 239 + 216 174 206 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - BICOMP - 25 + ICCARM + 133 - ICCARM - 42 + BICOMP + 110 - BICOMP - 171 94 136 149 125 108 167 135 137 119 168 130 174 163 80 92 88 10 15 7 112 13 6 73 11 161 169 95 103 + ICCARM + 58 272 228 78 52 57 - ICCARM - 171 94 136 149 125 108 167 135 137 119 168 130 174 163 80 140 92 88 10 15 7 112 13 6 73 11 161 169 95 103 + BICOMP + 58 272 228 78 52 57 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_input.c - BICOMP - 38 + ICCARM + 160 - ICCARM - 64 + BICOMP + 151 - BICOMP - 17 + ICCARM + 58 272 228 78 270 20 226 271 - ICCARM - 17 + BICOMP + 58 272 228 78 270 20 226 271 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - BICOMP - 72 + ICCARM + 119 - ICCARM - 61 + BICOMP + 100 - BICOMP - 174 163 80 92 88 10 15 171 94 135 75 5 + ICCARM + 61 50 12 35 83 223 10 62 58 272 228 78 152 87 - ICCARM - 174 163 80 140 92 88 10 15 171 94 135 75 5 + BICOMP + 61 50 12 83 223 10 62 58 272 228 78 152 87 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_loader.c - BICOMP - 196 + ICCARM + 95 - ICCARM - 28 + BICOMP + 104 - BICOMP - 171 94 120 127 0 152 149 174 163 80 92 88 10 15 + ICCARM + 58 85 272 228 78 0 15 61 50 12 35 83 223 10 62 67 14 7 66 69 248 48 56 86 234 - ICCARM - 171 94 120 127 0 152 149 174 163 80 140 92 88 10 15 + BICOMP + 58 85 272 228 78 0 15 61 50 12 83 223 10 62 67 14 7 66 69 248 48 56 86 234 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - BICOMP - 46 + ICCARM + 90 - ICCARM - 27 + BICOMP + 107 - BICOMP - 171 94 125 173 82 + ICCARM + 58 272 228 78 79 16 - ICCARM - 171 94 125 173 82 + BICOMP + 58 272 228 78 79 16 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\d_output.c - BICOMP - 24 + ICCARM + 155 - ICCARM - 34 + BICOMP + 96 - BICOMP - 171 94 149 125 86 14 174 163 80 92 88 10 15 + ICCARM + 58 272 228 78 84 73 - ICCARM - 171 94 149 125 86 14 174 163 80 140 92 88 10 15 + BICOMP + 58 272 228 78 84 73 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_sound.c - BICOMP - 197 + ICCARM + 112 - ICCARM - 71 + BICOMP + 154 - BICOMP - 171 94 89 127 78 21 + ICCARM + 58 272 228 78 49 47 141 - ICCARM - 171 94 89 127 78 21 + BICOMP + 58 272 228 78 49 47 141 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_timer.c - BICOMP - 52 + ICCARM + 116 - ICCARM - 31 + BICOMP + 122 - BICOMP - 146 163 80 92 88 10 15 22 171 94 152 85 93 135 + ICCARM + 58 272 228 78 24 70 - ICCARM - 146 163 80 140 92 88 10 15 22 171 94 152 85 93 135 + BICOMP + 58 272 228 78 24 70 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\d_usb.c - BICOMP - 67 + ICCARM + 125 - ICCARM - 32 + BICOMP + 161 - BICOMP - 73 163 80 92 88 10 15 174 171 94 134 149 117 162 + ICCARM + 58 272 228 78 269 6 - ICCARM - 73 163 80 140 92 88 10 15 174 171 94 134 149 117 162 + BICOMP + 58 272 228 78 269 6 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\m_sched.c - BICOMP - 55 + ICCARM + 158 - ICCARM - 56 + BICOMP + 120 - BICOMP - 146 163 80 92 88 10 15 174 7 112 13 6 73 11 161 169 95 103 171 94 108 110 122 104 20 135 149 100 134 127 152 125 167 136 89 138 96 118 133 141 144 87 111 12 16 147 90 166 114 1 172 129 164 84 99 18 116 175 76 143 128 123 145 132 105 151 159 2 109 81 65 79 8 115 126 271 9 148 106 + ICCARM + 58 85 272 228 78 54 30 270 20 33 91 8 267 71 233 2 224 227 51 59 144 - ICCARM - 146 163 80 140 92 88 10 15 174 7 112 13 6 73 11 161 169 95 103 171 94 108 110 122 104 20 135 149 100 134 127 152 125 167 136 89 138 96 118 133 141 144 87 111 12 16 147 90 166 114 1 172 129 164 84 99 18 116 175 76 143 128 123 145 132 105 151 159 2 109 81 65 79 8 115 126 271 9 148 106 + BICOMP + 58 85 272 228 78 54 30 270 20 33 91 8 267 71 233 2 224 227 51 59 144 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\c_display.c - AARM - 54 + ICCARM + 130 + + + BICOMP + 135 - AARM - 107 + ICCARM + 61 50 12 35 83 223 10 62 58 85 28 71 65 + + + BICOMP + 61 50 12 83 223 10 62 58 85 28 71 65 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\c_input.c - BICOMP - 68 + ICCARM + 99 - ICCARM - 155 + BICOMP + 165 - BICOMP - 171 94 122 104 20 130 91 174 163 80 92 88 10 15 + ICCARM + 58 85 270 20 226 44 42 61 50 12 35 83 223 10 62 - ICCARM - 171 94 122 104 20 130 91 174 163 80 140 92 88 10 15 + BICOMP + 58 85 270 20 226 44 42 61 50 12 83 223 10 62 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c - BICOMP - 189 + ICCARM + 98 - ICCARM - 57 + BICOMP + 118 - BICOMP - 171 122 104 20 83 150 + ICCARM + 58 85 18 59 152 - ICCARM - 171 122 104 20 83 150 + BICOMP + 58 85 18 59 152 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\c_loader.c - BICOMP - 187 + ICCARM + 105 - ICCARM - 154 + BICOMP + 97 - BICOMP - 171 122 104 20 5 98 + ICCARM + 58 85 42 18 0 8 61 50 12 35 83 223 10 62 - ICCARM - 171 122 104 20 5 98 + BICOMP + 58 85 42 18 0 8 61 50 12 83 223 10 62 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c - BICOMP - 43 + ICCARM + 134 - ICCARM - 63 + BICOMP + 162 - BICOMP - 171 122 104 20 168 170 + ICCARM + 58 85 77 20 233 79 - ICCARM - 171 122 104 20 168 170 + BICOMP + 58 85 77 20 233 79 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\c_output.c - BICOMP - 157 + ICCARM + 102 - ICCARM - 190 + BICOMP + 124 - BICOMP - 171 122 104 20 120 127 0 121 + ICCARM + 37 50 12 35 83 223 10 62 80 58 85 44 2 84 28 - ICCARM - 171 122 104 20 120 127 0 121 + BICOMP + 37 50 12 83 223 10 62 80 58 85 44 2 84 28 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\c_sound.c - BICOMP - 29 + ICCARM + 103 - ICCARM - 47 + BICOMP + 139 - BICOMP - 174 163 80 92 88 10 15 171 122 104 20 82 97 + ICCARM + 69 50 12 35 83 223 10 62 61 58 85 27 42 267 49 - ICCARM - 174 163 80 140 92 88 10 15 171 122 104 20 82 97 + BICOMP + 69 50 12 83 223 10 62 61 58 85 27 42 267 49 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_ui.c - BICOMP - 33 + ICCARM + 128 - ICCARM - 26 + BICOMP + 127 - BICOMP - 171 94 122 104 20 86 113 174 163 80 92 88 10 15 7 112 13 6 73 11 161 169 95 103 + ICCARM + 37 50 12 35 83 223 10 62 61 67 14 7 66 69 248 48 56 86 234 58 85 230 144 272 228 78 28 42 91 27 20 44 18 51 29 77 31 89 268 26 32 36 1 145 249 64 39 81 55 264 76 60 23 53 3 5 74 266 63 11 38 21 17 40 25 235 46 45 75 231 13 137 232 68 265 19 246 225 41 236 - ICCARM - 171 94 122 104 20 86 113 174 163 80 140 92 88 10 15 7 112 13 6 73 11 161 169 95 103 + BICOMP + 37 50 12 83 223 10 62 61 67 14 7 66 69 248 48 56 86 234 58 85 230 144 272 228 78 28 42 91 27 20 44 18 51 29 77 31 89 268 26 32 36 1 145 249 64 39 81 55 264 76 60 23 53 3 5 74 266 63 11 38 21 17 40 25 235 46 45 75 231 13 137 232 68 265 19 246 225 41 236 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\Include\Cstartup.s79 - BICOMP - 39 - - - ICCARM - 36 + AARM + 126 - BICOMP - 171 122 104 20 21 124 - - - ICCARM - 171 122 104 20 21 124 + AARM + 229 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - BICOMP - 23 + ICCARM + 136 - ICCARM - 185 + BICOMP + 101 - BICOMP - 171 122 104 20 93 19 + ICCARM + 72 - ICCARM - 171 122 104 20 93 19 + BICOMP + 72 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_bt.c - BICOMP - 158 + ICCARM + 149 - ICCARM - 41 + BICOMP + 140 - BICOMP - 171 122 104 20 162 160 69 + ICCARM + 58 85 272 228 78 22 82 61 50 12 35 83 223 10 62 - ICCARM - 171 122 104 20 162 160 69 + BICOMP + 58 85 272 228 78 22 82 61 50 12 83 223 10 62 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_button.c - BICOMP - 51 + ICCARM + 129 - ICCARM - 44 + BICOMP + 159 - BICOMP - 171 122 104 20 131 74 + ICCARM + 58 272 228 78 153 43 - ICCARM - 171 122 104 20 131 74 + BICOMP + 58 272 228 78 153 43 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_display.c - BICOMP - 191 + ICCARM + 146 - ICCARM - 53 + BICOMP + 147 - BICOMP - 171 122 104 20 119 102 + ICCARM + 58 272 228 78 65 88 - ICCARM - 171 122 104 20 119 102 + BICOMP + 58 272 228 78 65 88 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_button.c - BICOMP - 48 + ICCARM + 163 - ICCARM - 188 + BICOMP + 111 - BICOMP - 171 94 122 104 20 165 137 120 127 142 100 14 117 75 78 85 101 77 167 173 110 + ICCARM + 58 85 33 91 153 - ICCARM - 171 94 122 104 20 165 137 120 127 142 100 14 117 75 78 85 101 77 167 173 110 + BICOMP + 58 85 33 91 153 @@ -3106,95 +3103,30 @@ RAM_Debug - $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\d_display.h - $TOOLKIT_DIR$\inc\xmtx.h - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\BtTest.inc - $TOOLKIT_DIR$\inc\DLib_Threads.h - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\d_usb.r $TOOLKIT_DIR$\inc\xtls.h $PROJ_DIR$\..\..\Source\c_loader.h - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\RCXintro_9.txt - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\..\Source\c_led.iom - $TOOLKIT_DIR$\inc\math.h - $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\..\Source\c_led.c - $PROJ_DIR$\..\..\Source\d_led.c - $PROJ_DIR$\..\..\Source\c_led.h - $PROJ_DIR$\..\..\Source\Submenu03.rms - $PROJ_DIR$\..\..\Source\d_sound_adpcm.r - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\d_timer.r - $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\c_comm.c + $TOOLKIT_DIR$\inc\DLib_Threads.h $PROJ_DIR$\..\..\Source\RCXintro_12.txt - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\Submenu04.rms $TOOLKIT_DIR$\inc\DLib_Defaults.h $PROJ_DIR$\..\..\Source\Submenu02.rms - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $PROJ_DIR$\..\..\Source\d_button.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt - $PROJ_DIR$\..\..\Source\c_output.h - $PROJ_DIR$\..\..\Source\d_loader.h - $PROJ_DIR$\..\..\Source\Port.txt - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_bt.r - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\..\..\Source\d_output.h - $PROJ_DIR$\..\..\Source\modules.h - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\..\..\Source\c_button.iom - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_usb.r - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\Include\sam7s256.h - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\c_ui.iom - $PROJ_DIR$\..\..\Source\Submenu01.rms - $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\Ok.txt $TOOLKIT_DIR$\inc\xlocale.h $PROJ_DIR$\..\..\Source\d_loader.r - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\d_usb.h - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\..\..\Source\c_ioctrl.iom $PROJ_DIR$\..\..\Source\Submenu07.rms $PROJ_DIR$\..\..\Source\c_input.iom $PROJ_DIR$\..\..\Source\RCXintro_14.txt - $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\..\..\Source\d_timer.h $PROJ_DIR$\..\..\Source\Status.txt $PROJ_DIR$\..\..\Source\Step.txt @@ -3203,42 +3135,102 @@ $PROJ_DIR$\..\..\Source\c_comm.iom $PROJ_DIR$\..\..\Source\c_comm.h $PROJ_DIR$\..\..\Source\Display.txt - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc $PROJ_DIR$\..\..\Source\Cursor.txt $PROJ_DIR$\..\..\Source\c_button.h - $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc $PROJ_DIR$\..\..\Source\Running.txt - $PROJ_DIR$\..\..\Source\RCXintro_16.txt $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\RCXintro_13.txt $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\RCXintro_16.txt $PROJ_DIR$\..\..\Source\Test1.txt $PROJ_DIR$\..\..\Source\c_loader.iom $PROJ_DIR$\..\..\Source\d_button.r - $PROJ_DIR$\..\..\Source\Connections.txt $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\d_led.r $PROJ_DIR$\..\..\Source\Ui.txt + $PROJ_DIR$\..\..\Source\Connections.txt $PROJ_DIR$\..\..\Source\d_sound.r $TOOLKIT_DIR$\inc\xlocale_c.h $PROJ_DIR$\..\..\Source\d_sound.h $TOOLKIT_DIR$\inc\yvals.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.h $PROJ_DIR$\..\..\Source\RCXintro_6.txt $PROJ_DIR$\..\Include\sam7s256.c $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\d_hispeed.h $TOOLKIT_DIR$\inc\xtinfo.h $PROJ_DIR$\..\..\Source\d_hispeed.r $PROJ_DIR$\..\..\Source\stdconst.h - $PROJ_DIR$\..\..\Source\RCXintro_4.txt $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_4.txt $TOOLKIT_DIR$\inc\string.h + $TOOLKIT_DIR$\inc\ysizet.h $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\d_display.h + $TOOLKIT_DIR$\inc\xmtx.h + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\d_bt.r + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\modules.h + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\..\Source\c_led.iom $PROJ_DIR$\SrcIAR\Cstartup.s79 - $PROJ_DIR$\RAM_Debug\Obj\d_timer.r79 + $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\..\Source\d_led.h + $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + $PROJ_DIR$\..\..\Source\d_led.r + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\Ok.txt + $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\d_button.h + $TOOLKIT_DIR$\inc\ymath.h + $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\d_sensor.r + $PROJ_DIR$\..\..\Source\c_motor.iom + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_sensor.h + $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\Source\d_motor.h + $PROJ_DIR$\..\..\Source\d_motor.r + $PROJ_DIR$\..\..\Source\d_sensor.h + $PROJ_DIR$\..\..\Source\c_sensor.iom + $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\c_motor.h + $PROJ_DIR$\..\Include\ioat91sam7s64.h $PROJ_DIR$\RAM_Debug\Obj\c_output.r79 + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\RAM_Debug\Obj\d_timer.r79 + $PROJ_DIR$\..\..\Source\BtTest.inc $PROJ_DIR$\RAM_Debug\Obj\c_display.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_ioctrl.pbi $PROJ_DIR$\RAM_Debug\Obj\m_sched.r79 $PROJ_DIR$\RAM_Debug\Obj\d_led.r79 $PROJ_DIR$\RAM_Debug\Obj\c_ui.r79 @@ -3263,6 +3255,7 @@ $PROJ_DIR$\RAM_Debug\Obj\c_input.r79 $PROJ_DIR$\RAM_Debug\Obj\c_display.pbi $PROJ_DIR$\RAM_Debug\Obj\m_sched.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_ioctrl.pbi $PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.pbi $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd $PROJ_DIR$\RAM_Debug\Obj\d_button.r79 @@ -3279,6 +3272,8 @@ $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.r79 $PROJ_DIR$\RAM_Debug\Obj\c_ui.pbi $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.r79 + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.pbi $PROJ_DIR$\RAM_Debug\Obj\c_motor.r79 $PROJ_DIR$\RAM_Debug\Obj\c_sensor.r79 @@ -3297,26 +3292,28 @@ $PROJ_DIR$\RAM_Debug\Obj\d_display.r79 $PROJ_DIR$\RAM_Debug\Obj\d_bt.r79 $PROJ_DIR$\RAM_Debug\Obj\c_sound.pbi - $TOOLKIT_DIR$\inc\limits.h - $TOOLKIT_DIR$\inc\ymath.h - $PROJ_DIR$\..\..\Source\d_sensor.c - $PROJ_DIR$\..\..\Source\c_motor.c - $PROJ_DIR$\..\..\Source\d_sensor.r - $PROJ_DIR$\..\..\Source\c_sensor.c - $PROJ_DIR$\..\..\Source\c_motor.iom - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c - $PROJ_DIR$\..\..\Source\d_motor.c - $PROJ_DIR$\..\..\Source\c_sensor.h - $PROJ_DIR$\..\..\Source\d_motor.h - $PROJ_DIR$\..\..\Source\d_motor.r - $PROJ_DIR$\..\..\Source\d_sensor.h - $PROJ_DIR$\..\..\Source\c_sensor.iom - $PROJ_DIR$\..\src\main.c - $PROJ_DIR$\..\..\Source\main.c - $PROJ_DIR$\..\..\Source\c_motor.h - $PROJ_DIR$\..\Include\ioat91sam7s64.h - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\Submenu01.rms + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\Test2.txt + $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\Wait.txt $PROJ_DIR$\..\..\Source\c_display.c $PROJ_DIR$\..\..\Source\c_input.c $PROJ_DIR$\..\..\Source\c_ioctrl.c @@ -3326,73 +3323,91 @@ $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\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\c_button.c + [ROOT_NODE] - BICOMP - 153 + XLINK + 142 + + + + $PROJ_DIR$\..\..\Source\c_cmd.c + ICCARM - 138 + 185 - - BICOMP - 123 52 99 58 41 + 157 + + ICCARM - 123 52 99 58 41 + 57 84 50 43 20 41 191 27 89 28 29 76 233 189 77 124 170 24 36 49 12 163 82 123 10 61 60 68 92 105 102 34 + + + BICOMP + 57 84 50 43 20 41 191 27 89 28 29 76 233 189 77 124 170 24 36 49 12 82 123 10 61 60 68 92 105 102 34 - $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\..\Source\c_comm.c - BICOMP - 161 + ICCARM + 135 - ICCARM - 187 + BICOMP + 141 + + ICCARM + 57 84 29 41 18 191 50 28 30 230 51 22 60 49 12 163 82 123 10 61 66 14 7 65 68 209 47 55 85 195 + BICOMP - 123 52 119 109 85 106 66 92 58 93 94 47 80 62 20 59 35 89 103 115 38 50 46 10 15 126 31 24 192 191 97 + 57 84 29 41 18 191 50 28 30 230 51 22 60 49 12 82 123 10 61 66 14 7 65 68 209 47 55 85 195 + + + + $PROJ_DIR$\..\Include\sam7s256.c + ICCARM - 123 52 119 109 85 106 66 92 58 93 94 47 80 62 20 59 35 89 103 115 38 167 50 46 10 15 126 31 24 192 191 97 + 161 - + - [ROOT_NODE] + $PROJ_DIR$\SrcIAR\Cstartup.s79 - XLINK - 147 + AARM + 175 @@ -3401,13 +3416,13 @@ ICCARM - 148 + 143 ICCARM - 123 52 23 28 25 + 57 84 90 96 93 @@ -3416,85 +3431,73 @@ ICCARM - 134 + 129 ICCARM - 123 80 62 208 25 110 + 57 233 189 121 93 99 - $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\d_sensor.c ICCARM - 165 - - - - - $PROJ_DIR$\SrcIAR\Cstartup.s79 - - - AARM - 177 + 156 - - - $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd - BILINK - 157 153 161 146 155 166 132 139 164 142 190 171 185 145 141 173 178 149 181 162 143 150 180 137 156 + ICCARM + 57 233 189 121 117 110 - $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\d_motor.c ICCARM - 160 + 177 ICCARM - 123 80 62 208 203 195 + 57 233 189 121 115 116 - $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\c_sensor.c ICCARM - 174 + 173 ICCARM - 123 52 197 207 201 + 57 84 118 113 117 - $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_motor.c ICCARM - 175 + 172 ICCARM - 123 52 204 200 203 + 57 84 111 120 115 @@ -3503,584 +3506,578 @@ ICCARM - 136 + 131 - $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\main.c ICCARM - 179 + 181 - - - ICCARM - 123 80 62 208 201 202 - - $PROJ_DIR$\..\src\main.c ICCARM - 183 + 181 - $PROJ_DIR$\..\..\Source\main.c - + $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd + - ICCARM - 183 + BILINK + 153 148 157 141 150 162 152 134 160 137 188 167 183 140 136 171 176 144 179 158 138 145 178 132 151 - + - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - BICOMP - 146 + ICCARM + 168 - ICCARM - 140 + BICOMP + 171 - BICOMP - 123 52 94 106 83 66 119 93 95 77 120 88 126 115 38 50 46 10 15 7 70 13 6 31 11 113 121 53 61 + ICCARM + 57 233 189 77 51 56 - ICCARM - 123 52 94 106 83 66 119 93 95 77 120 88 126 115 38 167 50 46 10 15 7 70 13 6 31 11 113 121 53 61 + BICOMP + 57 233 189 77 51 56 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_input.c - BICOMP - 157 + ICCARM + 164 - ICCARM - 136 + BICOMP + 176 - BICOMP - 17 + ICCARM + 57 233 189 77 231 20 169 232 - ICCARM - 17 + BICOMP + 57 233 189 77 231 20 169 232 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - BICOMP - 155 + ICCARM + 166 - ICCARM - 131 + BICOMP + 144 - BICOMP - 126 115 38 50 46 10 15 123 52 93 33 5 + ICCARM + 60 49 12 163 82 123 10 61 57 233 189 77 103 86 - ICCARM - 126 115 38 167 50 46 10 15 123 52 93 33 5 + BICOMP + 60 49 12 82 123 10 61 57 233 189 77 103 86 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_loader.c - BICOMP - 166 + ICCARM + 146 - ICCARM - 154 + BICOMP + 179 - BICOMP - 123 52 78 85 0 109 106 126 115 38 50 46 10 15 + ICCARM + 57 84 233 189 77 0 15 60 49 12 163 82 123 10 61 66 14 7 65 68 209 47 55 85 195 - ICCARM - 123 52 78 85 0 109 106 126 115 38 167 50 46 10 15 + BICOMP + 57 84 233 189 77 0 15 60 49 12 82 123 10 61 66 14 7 65 68 209 47 55 85 195 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - BICOMP - 132 + ICCARM + 165 - ICCARM - 176 + BICOMP + 158 - BICOMP - 123 52 83 125 40 + ICCARM + 57 233 189 77 78 16 - ICCARM - 123 52 83 125 40 + BICOMP + 57 233 189 77 78 16 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\d_output.c - BICOMP - 139 + ICCARM + 180 - ICCARM - 152 + BICOMP + 138 - BICOMP - 123 52 106 83 44 14 126 115 38 50 46 10 15 + ICCARM + 57 233 189 77 83 72 - ICCARM - 123 52 106 83 44 14 126 115 38 167 50 46 10 15 + BICOMP + 57 233 189 77 83 72 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_sound.c - BICOMP - 164 + ICCARM + 139 - ICCARM - 163 + BICOMP + 145 - BICOMP - 123 52 47 85 36 21 + ICCARM + 57 233 189 77 48 46 98 - ICCARM - 123 52 47 85 36 21 + BICOMP + 57 233 189 77 48 46 98 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_timer.c - BICOMP - 142 + ICCARM + 125 - ICCARM - 130 + BICOMP + 178 - BICOMP - 103 115 38 50 46 10 15 22 123 52 109 43 51 93 + ICCARM + 57 233 189 77 24 69 - ICCARM - 103 115 38 167 50 46 10 15 22 123 52 109 43 51 93 + BICOMP + 57 233 189 77 24 69 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\d_usb.c - BICOMP - 190 + ICCARM + 182 - ICCARM - 186 + BICOMP + 132 - BICOMP - 31 115 38 50 46 10 15 126 123 52 92 106 75 114 + ICCARM + 57 233 189 77 230 6 - ICCARM - 31 115 38 167 50 46 10 15 126 123 52 92 106 75 114 + BICOMP + 57 233 189 77 230 6 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\m_sched.c - BICOMP - 171 + ICCARM + 128 - ICCARM - 135 + BICOMP + 151 - BICOMP - 103 115 38 50 46 10 15 126 7 70 13 6 31 11 113 121 53 61 123 52 66 68 80 62 20 93 106 58 92 85 109 83 119 94 47 96 54 76 91 98 101 45 69 12 16 104 48 118 72 1 124 87 116 42 57 18 74 127 34 100 86 81 102 90 63 108 111 2 67 39 29 37 8 73 84 232 9 105 64 + ICCARM + 57 84 233 189 77 53 30 231 20 33 89 8 228 70 194 2 124 170 50 58 100 - ICCARM - 103 115 38 167 50 46 10 15 126 7 70 13 6 31 11 113 121 53 61 123 52 66 68 80 62 20 93 106 58 92 85 109 83 119 94 47 96 54 76 91 98 101 45 69 12 16 104 48 118 72 1 124 87 116 42 57 18 74 127 34 100 86 81 102 90 63 108 111 2 67 39 29 37 8 73 84 232 9 105 64 + BICOMP + 57 84 233 189 77 53 30 231 20 33 89 8 228 70 194 2 124 170 50 58 100 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\c_display.c - AARM - 177 + ICCARM + 127 + + + BICOMP + 150 - AARM - 65 + ICCARM + 60 49 12 163 82 123 10 61 57 84 28 70 64 + + + BICOMP + 60 49 12 82 123 10 61 57 84 28 70 64 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\c_input.c - BICOMP - 185 + ICCARM + 149 - ICCARM - 189 + BICOMP + 162 - BICOMP - 123 52 80 62 20 88 49 126 115 38 50 46 10 15 + ICCARM + 57 84 231 20 169 43 41 60 49 12 163 82 123 10 61 - ICCARM - 123 52 80 62 20 88 49 126 115 38 167 50 46 10 15 + BICOMP + 57 84 231 20 169 43 41 60 49 12 82 123 10 61 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c - BICOMP - 145 + ICCARM + 174 - ICCARM - 159 + BICOMP + 152 - BICOMP - 123 80 62 20 41 107 + ICCARM + 57 84 18 58 103 - ICCARM - 123 80 62 20 41 107 + BICOMP + 57 84 18 58 103 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\c_loader.c - BICOMP - 141 + ICCARM + 147 - ICCARM - 188 + BICOMP + 134 - BICOMP - 123 80 62 20 5 56 + ICCARM + 57 84 41 18 0 8 60 49 12 163 82 123 10 61 - ICCARM - 123 80 62 20 5 56 + BICOMP + 57 84 41 18 0 8 60 49 12 82 123 10 61 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c - BICOMP - 173 + ICCARM + 159 - ICCARM - 172 + BICOMP + 160 - BICOMP - 123 80 62 20 120 122 + ICCARM + 57 84 76 20 194 78 - ICCARM - 123 80 62 20 120 122 + BICOMP + 57 84 76 20 194 78 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\c_output.c - BICOMP - 178 + ICCARM + 122 - ICCARM - 168 + BICOMP + 137 - BICOMP - 123 80 62 20 78 85 0 79 + ICCARM + 36 49 12 163 82 123 10 61 79 57 84 43 2 83 28 - ICCARM - 123 80 62 20 78 85 0 79 + BICOMP + 36 49 12 82 123 10 61 79 57 84 43 2 83 28 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\c_sound.c - BICOMP - 149 + ICCARM + 184 - ICCARM - 170 + BICOMP + 188 - BICOMP - 126 115 38 50 46 10 15 123 80 62 20 40 55 + ICCARM + 68 49 12 163 82 123 10 61 60 57 84 27 41 228 48 - ICCARM - 126 115 38 167 50 46 10 15 123 80 62 20 40 55 + BICOMP + 68 49 12 82 123 10 61 60 57 84 27 41 228 48 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_ui.c - BICOMP - 181 + ICCARM + 130 - ICCARM - 151 + BICOMP + 167 - BICOMP - 123 52 80 62 20 44 71 126 115 38 50 46 10 15 7 70 13 6 31 11 113 121 53 61 + ICCARM + 36 49 12 163 82 123 10 61 60 66 14 7 65 68 209 47 55 85 195 57 84 191 100 233 189 77 28 41 89 27 20 43 18 50 29 76 31 88 229 26 32 35 1 101 210 63 38 80 54 225 75 59 23 52 3 5 73 227 62 11 37 21 17 39 25 196 45 44 74 192 13 97 193 67 226 19 207 126 40 197 - ICCARM - 123 52 80 62 20 44 71 126 115 38 167 50 46 10 15 7 70 13 6 31 11 113 121 53 61 + BICOMP + 36 49 12 82 123 10 61 60 66 14 7 65 68 209 47 55 85 195 57 84 191 100 233 189 77 28 41 89 27 20 43 18 50 29 76 31 88 229 26 32 35 1 101 210 63 38 80 54 225 75 59 23 52 3 5 73 227 62 11 37 21 17 39 25 196 45 44 74 192 13 97 193 67 226 19 207 126 40 197 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\Include\Cstartup.s79 - BICOMP - 162 - - - ICCARM - 169 + AARM + 175 - BICOMP - 123 80 62 20 21 82 - - - ICCARM - 123 80 62 20 21 82 + AARM + 190 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - BICOMP - 143 + ICCARM + 131 - ICCARM - 182 + BICOMP + 153 - BICOMP - 123 80 62 20 51 19 + ICCARM + 71 - ICCARM - 123 80 62 20 51 19 + BICOMP + 71 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_bt.c - BICOMP - 150 + ICCARM + 187 - ICCARM - 144 + BICOMP + 183 - BICOMP - 123 80 62 20 114 112 30 + ICCARM + 57 84 233 189 77 22 81 60 49 12 163 82 123 10 61 - ICCARM - 123 80 62 20 114 112 30 + BICOMP + 57 84 233 189 77 22 81 60 49 12 82 123 10 61 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_button.c - BICOMP - 180 + ICCARM + 155 - ICCARM - 129 + BICOMP + 140 - BICOMP - 123 80 62 20 89 32 + ICCARM + 57 233 189 77 104 42 - ICCARM - 123 80 62 20 89 32 + BICOMP + 57 233 189 77 104 42 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_display.c - BICOMP - 137 + ICCARM + 186 - ICCARM - 184 + BICOMP + 136 - BICOMP - 123 80 62 20 77 60 + ICCARM + 57 233 189 77 64 87 - ICCARM - 123 80 62 20 77 60 + BICOMP + 57 233 189 77 64 87 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_button.c - - BICOMP - 156 - ICCARM 133 - - BICOMP - 123 52 80 62 20 117 95 78 85 99 58 14 75 33 36 43 59 35 119 125 68 + 148 + + ICCARM - 123 52 80 62 20 117 95 78 85 99 58 14 75 33 36 43 59 35 119 125 68 + 57 84 33 89 104 + + + BICOMP + 57 84 33 89 104 diff --git a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt index 9b3aa48..7759d5d 100644 --- a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt +++ b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt @@ -11,7 +11,7 @@ - 1233271307876 + 1733271307876 300Find-in-FilesDebug-Log1862724461 @@ -50,14 +50,14 @@ - TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_cmd.c011533339133391TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_output.c085926834268341TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_loader.c05597597TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_input.c02261189111904TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_comm.c03624102490102490TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\c_cmd.iom014761416145TextEditorD:\NXT\lms_nbcnxc_128\AT91SAM7S256\Source\d_bt.c039483428346TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_cmd.iom011352295229TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_ui.c011813076630766TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\Functions.inl031629635696595TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_output.c09700TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\d_output.h02618111811TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\d_output.c0136466460100000010000001 + TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_cmd.c09420266667266667TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\d_bt.c032670647064TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\d_bt.r09000TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\modules.h03717621762TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_comm.c025591219121TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_comm.iom05420602060TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_loader.iom07200TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_loader.h0300TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_loader.c06928682868TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\d_hispeed.c0000TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\d_hispeed.r03012111224TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_comm.h010520152015TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_input.c09963552635535TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_input.iom018922931130100000010000001 - iaridepm.enu1-2-2463190-2-20000157119701357-2-21551224-2-212261571003273236802139935236802 + iaridepm.enu1-2-2601223-2-20000157123716152-2-21971434-2-214361991002793236342139665236342 diff --git a/AT91SAM7S256/Source/c_cmd.c b/AT91SAM7S256/Source/c_cmd.c index 3fc28e4..674960c 100644 --- a/AT91SAM7S256/Source/c_cmd.c +++ b/AT91SAM7S256/Source/c_cmd.c @@ -9423,7 +9423,7 @@ NXT_STATUS cCmdWrapCommHSControl(UBYTE * ArgV[]) { case HS_CTRL_INIT: { - // hi-speed init + // hi-speed enable/init pMapComm->HsState = HS_ENABLE; pMapComm->HsFlags = HS_UPDATE; } @@ -9433,7 +9433,7 @@ NXT_STATUS cCmdWrapCommHSControl(UBYTE * ArgV[]) { // hi-speed setup uart pMapComm->HsSpeed = *(ArgV[2]); - pMapComm->HsMode = *(ArgV[3]); + pMapComm->HsMode = *(UWORD*)(ArgV[3]); pMapComm->HsState = HS_INITIALISE; pMapComm->HsFlags = HS_UPDATE; } @@ -9448,7 +9448,7 @@ NXT_STATUS cCmdWrapCommHSControl(UBYTE * ArgV[]) break; } - *((UWORD *)ArgV[0]) = pMapComm->HsState; + *(ArgV[0]) = pMapComm->HsState; return (NO_ERR); } diff --git a/AT91SAM7S256/Source/c_comm.c b/AT91SAM7S256/Source/c_comm.c index 1c9db04..1878108 100644 --- a/AT91SAM7S256/Source/c_comm.c +++ b/AT91SAM7S256/Source/c_comm.c @@ -271,6 +271,7 @@ void cCommCtrl(void) case HS_SEND_DATA: { cCommSendHiSpeedData(); + IOMapComm.HsState = HS_DEFAULT; // do not leave this in HS_SEND_DATA state } break; diff --git a/AT91SAM7S256/Source/c_comm.iom b/AT91SAM7S256/Source/c_comm.iom index 98edff7..367a0db 100644 --- a/AT91SAM7S256/Source/c_comm.iom +++ b/AT91SAM7S256/Source/c_comm.iom @@ -72,7 +72,8 @@ enum HS_INIT_RECEIVER, HS_SEND_DATA, HS_DISABLE, - HS_ENABLE + HS_ENABLE, + HS_DEFAULT }; // Constants reffering to hi-speed control syscall function -- cgit v1.2.3 From 6b80a743d44d73d8af9cc12fbffe9548904b3b62 Mon Sep 17 00:00:00 2001 From: tcsadmin Date: Fri, 21 Jan 2011 22:08:04 +0000 Subject: Addressable hi-speed RS485 port changes (first byte is the device address) git-svn-id: https://mindboards.svn.sourceforge.net/svnroot/mindboards/lms_nbcnxc/branches/version_131@31 c9361245-7fe8-9947-84e8-057757c4e366 --- AT91SAM7S256/Source/c_comm.c | 54 +++++++++++++++++++++++++----------------- AT91SAM7S256/Source/c_comm.iom | 13 +++++++++- 2 files changed, 44 insertions(+), 23 deletions(-) (limited to 'AT91SAM7S256/Source/c_comm.iom') diff --git a/AT91SAM7S256/Source/c_comm.c b/AT91SAM7S256/Source/c_comm.c index 5b5292d..c760b84 100644 --- a/AT91SAM7S256/Source/c_comm.c +++ b/AT91SAM7S256/Source/c_comm.c @@ -161,6 +161,7 @@ void cCommInit(void* pHeader) IOMapComm.BtDeviceCnt = 0; IOMapComm.BrickData.BtStateStatus = 0; IOMapComm.HsSpeed = HS_BAUD_921600; + IOMapComm.HsAddress = HS_ADDRESS_ALL; IOMapComm.HsMode = HS_MODE_8N1; IOMapComm.BtDataMode = DATA_MODE_NXT; IOMapComm.HsDataMode = DATA_MODE_RAW; @@ -1508,7 +1509,8 @@ void cCommReceivedHiSpeedData(void) { UWORD NumberOfBytes; UWORD Tmp; - + UBYTE Address; + dHiSpeedReceivedData(&NumberOfBytes); if (NumberOfBytes != 0) @@ -1532,29 +1534,37 @@ void cCommReceivedHiSpeedData(void) else { // receiving hi-speed data in NXT mode - /* Copy the bytes into the IOMapBuffer */ if (NumberOfBytes > SIZE_OF_HSBUF) NumberOfBytes = SIZE_OF_HSBUF; - memcpy((PSZ)IOMapComm.HsInBuf.Buf, (PSZ)VarsComm.HsModuleInBuf.Buf, NumberOfBytes); - memset((PSZ)VarsComm.HsModuleInBuf.Buf, 0, 256); - - /* Move the inptr ahead */ - IOMapComm.HsInBuf.InPtr = NumberOfBytes; - IOMapComm.HsInBuf.OutPtr = 0; - - /* using the outbuf inptr in order to get the number of bytes in the return answer at the right place*/ - IOMapComm.HsOutBuf.InPtr = NumberOfBytes; - - /* call the data stream interpreter */ - cCommInterprete(IOMapComm.HsInBuf.Buf, IOMapComm.HsOutBuf.Buf, &(IOMapComm.HsOutBuf.InPtr), (UBYTE) HS_CMD_READY, NumberOfBytes); - - /* if there is a reply to be sent then send it */ - if (IOMapComm.HsOutBuf.InPtr) - { - cCommSendHiSpeedData(); -// dHiSpeedSendData(IOMapComm.HsOutBuf.Buf, IOMapComm.HsOutBuf.InPtr); - IOMapComm.HsOutBuf.InPtr = 0; - IOMapComm.HsOutBuf.OutPtr = 0; + Address = VarsComm.HsModuleInBuf.Buf[0]; + NumberOfBytes--; + if ((IOMapComm.HsAddress == Address) || + (HS_ADDRESS_ALL == Address) || + (HS_ADDRESS_ALL == IOMapComm.HsAddress)) + { + /* Copy the bytes into the IOMapBuffer */ + memcpy((PSZ)IOMapComm.HsInBuf.Buf, (PSZ)(VarsComm.HsModuleInBuf.Buf+1), NumberOfBytes); + memset((PSZ)VarsComm.HsModuleInBuf.Buf, 0, 256); + + /* Move the inptr ahead */ + IOMapComm.HsInBuf.InPtr = NumberOfBytes; + IOMapComm.HsInBuf.OutPtr = 0; + + /* using the outbuf inptr in order to get the number of bytes in the return answer at the right place*/ + IOMapComm.HsOutBuf.InPtr = NumberOfBytes; + + /* call the data stream interpreter */ + cCommInterprete(IOMapComm.HsInBuf.Buf, (UBYTE *)(IOMapComm.HsOutBuf.Buf+1), &(IOMapComm.HsOutBuf.InPtr), (UBYTE) HS_CMD_READY, NumberOfBytes); + + /* if there is a reply to be sent then send it */ + if (IOMapComm.HsOutBuf.InPtr) + { + IOMapComm.HsOutBuf.Buf[0] = HS_ADDRESS_ALL; // reply is sent to "all" + IOMapComm.HsOutBuf.InPtr++; + cCommSendHiSpeedData(); + IOMapComm.HsOutBuf.InPtr = 0; + IOMapComm.HsOutBuf.OutPtr = 0; + } } } } diff --git a/AT91SAM7S256/Source/c_comm.iom b/AT91SAM7S256/Source/c_comm.iom index 367a0db..7f11837 100644 --- a/AT91SAM7S256/Source/c_comm.iom +++ b/AT91SAM7S256/Source/c_comm.iom @@ -127,6 +127,17 @@ enum #define HS_MODE_8N1 (HS_MODE_8_DATA|HS_MODE_N_PARITY|HS_MODE_10_STOP) #define HS_MODE_7E1 (HS_MODE_7_DATA|HS_MODE_E_PARITY|HS_MODE_10_STOP) +// constants referring to HsAddress +#define HS_ADDRESS_ALL 0 +#define HS_ADDRESS_1 1 +#define HS_ADDRESS_2 2 +#define HS_ADDRESS_3 3 +#define HS_ADDRESS_4 4 +#define HS_ADDRESS_5 5 +#define HS_ADDRESS_6 6 +#define HS_ADDRESS_7 7 +#define HS_ADDRESS_8 8 + //Constants refering to DeviceStatus within DeviceTable enum { @@ -273,7 +284,7 @@ typedef struct UBYTE HsState; UBYTE UsbState; - UBYTE Spare1; // fill the vacant byte that would otherwise be here + UBYTE HsAddress; // make RS485 addressible for up to 8 bricks UWORD HsMode; -- cgit v1.2.3