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_ui.c | 46 +++++++++++++++++++--------------------------- 1 file changed, 19 insertions(+), 27 deletions(-) (limited to 'AT91SAM7S256/Source/c_ui.c') diff --git a/AT91SAM7S256/Source/c_ui.c b/AT91SAM7S256/Source/c_ui.c index c79dca9..b47813a 100644 --- a/AT91SAM7S256/Source/c_ui.c +++ b/AT91SAM7S256/Source/c_ui.c @@ -168,43 +168,29 @@ enum STATUS_NO // Index in status icon collection file enum // String index in text string file { TXT_GENERAL_EMPTY, + TXT_FB_GENERIC_FAIL, // "Failed!" + // BlueTooth connect TXT_FB_BT_CONNECTING_WAIT, // "Connecting" TXT_FB_BT_CONNECT_BUSY_FAIL, // "Line is busy" - TXT_FB_BT_CONNECTING_FAIL, // "Failed!" // BlueTooth send file TXT_FB_BT_SENDING_NO_CONN_FAIL, // "Connection?" TXT_FB_BT_SENDING_WAIT, // "Sending file" - TXT_FB_BT_SENDING_FAIL, // "Failed!" // BlueTooth on/off TXT_FB_BT_TURNING_ON_WAIT, // "Turning on" - TXT_FB_BT_TURNING_ON_FAIL, // "Failed!" TXT_FB_BT_TURNING_OFF_WAIT, // "Turning off" - TXT_FB_BT_TURNING_OFF_FAIL, // "Failed!" // BlueTooth seach TXT_FB_BT_SEARCHING_WAIT, // "Searching" TXT_FB_BT_SEARCH_ABORTED_INFO, // "Aborted!" - TXT_FB_BT_SEARCHING_FAIL, // "Failed!" - - // BlueTooth device list - TXT_FB_BT_REMOVE_FAIL, // "Failed!" - - // BlueTooth connection list - TXT_FB_BT_DISCONNECT_FAIL, // "Failed!" // On Brick Programming TXT_FB_OBP_MEMORY_FULL_FAIL, // "Memory full!" - TXT_FB_OBP_FILE_SAVED_INFO, // "File saved" - TXT_FB_OBP_FILE_EXIST_FAIL, // "File exist" - TXT_FB_OBP_OVERWRITE_FAIL, // "overwrite!" - - // Datalogging - TXT_FB_DL_FILE_SAVED_INFO, // "File saved" - TXT_FB_DL_FILE_EXIST_FAIL, // "File exist" - TXT_FB_DL_OVERWRITE_FAIL, // "overwrite!" + TXT_FB_FILE_SAVED_INFO, // "File saved" + TXT_FB_FILE_EXIST_FAIL, // "File exist" + TXT_FB_OVERWRITE_FAIL, // "overwrite!" // File delete TXT_FB_FD_FILE_DELETED_INFO, // "File deleted" @@ -217,7 +203,7 @@ enum // String index in text string file TXT_FILERUN_RUNNING, // "Running" TXT_FILERUN_ABORTED, // "Aborted!" TXT_FILERUN_ENDED, // "Ended" - TXT_FILERUN_FILE_ERROR, // "File error!" + TXT_FILERUN_FILE_ERROR, // "File error! %d" // Files delete TXT_FILESDELETE_DELETING_ALL, // "Deleting all" @@ -250,13 +236,7 @@ enum // String index in text string file TXT_ONBRICKPROGRAMMING_BC_LR_MOTORS, // "B/C - L/R motors" // View - TXT_VIEW_SELECT, // "Select" - - // BlueTooth device list - TXT_BTDEVICELIST_SELECT, // "Select" - - // BlueTooth connection list - TXT_BTCONNECTLIST_SELECT, // "Select" + TXT_GENERIC_SELECT, // "Select" // Bluetooth list errors TXT_FB_BT_ERROR_LR_COULD_NOT_SAVE_1, // BT save data error! @@ -1286,6 +1266,18 @@ void cUiCtrl(void) */ // + if ((!(IOMapUi.Flags & UI_EXECUTE_LMS_FILE)) && (IOMapUi.State == INIT_INTRO)/* && ((pMapButton->State[BTN1] & PRESSED_STATE)!=PRESSED_STATE)*/) + { + UWORD LStatus; + if (LOADER_ERR(LStatus = pMapLoader->pFunc(FINDFIRST, UI_STARTUP_PROGRAM, NULL, NULL)) == SUCCESS) + { + //Close file handle returned by FINDFIRST + pMapLoader->pFunc(CLOSE, LOADER_HANDLE_P(LStatus), NULL, NULL); + strcpy((char*)IOMapUi.LMSfilename, UI_STARTUP_PROGRAM); + IOMapUi.Flags |= UI_EXECUTE_LMS_FILE; + IOMapUi.State = INIT_MENU; + } + } VarsUi.CRPasskey++; VarsUi.ButtonTimer++; -- cgit v1.2.3 From c3ff51060cc0e769327f5b6be60526a258bebf27 Mon Sep 17 00:00:00 2001 From: John Hansen Date: Wed, 3 Nov 2010 13:03:21 +0000 Subject: motor control and rs485 changes git-svn-id: https://mindboards.svn.sourceforge.net/svnroot/mindboards/lms_nbcnxc/branches/version_131@28 c9361245-7fe8-9947-84e8-057757c4e366 --- AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep | 4186 ++++++++++---------- AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp | 3 + .../SAM7S256/Tools/settings/LMS_ARM.cspy.bat | 8 +- AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.dbgdt | 12 +- AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.dni | 6 +- AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt | 10 +- AT91SAM7S256/Source/Functions.inl | 31 +- AT91SAM7S256/Source/c_cmd.c | 43 +- AT91SAM7S256/Source/c_comm.c | 12 +- AT91SAM7S256/Source/c_ui.c | 21 +- AT91SAM7S256/Source/c_ui.h | 12 +- AT91SAM7S256/Source/c_ui.iom | 4 + AT91SAM7S256/Source/d_output.c | 74 +- 13 files changed, 2253 insertions(+), 2169 deletions(-) (limited to 'AT91SAM7S256/Source/c_ui.c') diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep index 10e882b..dc7b2a8 100644 --- a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep @@ -2,180 +2,30 @@ 2 - 2103580747 + 2897159082 Benchmark - $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$\..\..\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 - $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 - $PROJ_DIR$\Benchmark\Obj\c_cmd.pbi - $PROJ_DIR$\Benchmark\Obj\d_hispeed.r79 - $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\Benchmark\Obj\c_button.r79 - $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\..\..\Source\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_button.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\c_button.c + $TOOLKIT_DIR$\inc\xtinfo.h $PROJ_DIR$\Benchmark\Obj\c_comm.r79 - $PROJ_DIR$\Benchmark\Obj\c_lowspeed.pbi - $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\Cstartup_SAM7.pbi - $PROJ_DIR$\..\..\Source\c_input.iom - $PROJ_DIR$\Benchmark\Obj\c_output.pbi - $PROJ_DIR$\Benchmark\Obj\d_sound.pbi - $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 - $PROJ_DIR$\..\..\Source\c_sound.iom - $PROJ_DIR$\Benchmark\Obj\d_sound.r79 - $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\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$\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\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\Connections.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.iom $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\c_ioctrl.h - $PROJ_DIR$\Benchmark\Obj\c_cmd.r79 - $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $TOOLKIT_DIR$\inc\DLib_Threads.h $TOOLKIT_DIR$\inc\string.h - $PROJ_DIR$\Benchmark\Obj\c_output.r79 - $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\c_cmd.c + $PROJ_DIR$\..\..\Source\c_comm.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 @@ -189,627 +39,777 @@ $PROJ_DIR$\..\..\Source\d_bt.c $PROJ_DIR$\..\..\Source\d_button.c $PROJ_DIR$\..\..\Source\d_display.c - $PROJ_DIR$\..\..\Source\c_button.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\c_display.iom + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_bt.r + $PROJ_DIR$\Benchmark\Obj\d_sound.r79 + $PROJ_DIR$\Benchmark\Obj\d_usb.pbi + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\Benchmark\Obj\c_display.pbi + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\Benchmark\Obj\c_cmd.pbi + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\Benchmark\Obj\d_lowspeed.pbi + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\Benchmark\Obj\d_ioctrl.pbi + $PROJ_DIR$\Benchmark\Obj\d_input.r79 + $PROJ_DIR$\Benchmark\Obj\c_input.r79 + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\Benchmark\Obj\c_lowspeed.r79 + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\Benchmark\Obj\c_ui.pbi + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\Benchmark\Obj\c_display.r79 + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\Benchmark\Obj\c_lowspeed.pbi + $PROJ_DIR$\..\..\Source\d_button.r + $PROJ_DIR$\Benchmark\Obj\d_usb.r79 + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\Benchmark\Obj\c_cmd.r79 + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $PROJ_DIR$\Benchmark\Obj\d_display.r79 + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\Benchmark\Obj\d_lowspeed.r79 + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.h + $TOOLKIT_DIR$\inc\yvals.h + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\Benchmark\Obj\c_output.r79 + $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\Benchmark\Obj\d_ioctrl.r79 + $PROJ_DIR$\Benchmark\Obj\d_loader.pbi + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\Benchmark\Obj\m_sched.r79 + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\Benchmark\Obj\Cstartup_SAM7.pbi + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\Benchmark\Obj\d_button.pbi + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\Benchmark\Obj\d_timer.r79 + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\Benchmark\Obj\c_loader.pbi + $PROJ_DIR$\..\..\Source\Submenu07.rms + $TOOLKIT_DIR$\inc\xtls.h + $PROJ_DIR$\Benchmark\Obj\d_loader.r79 + $PROJ_DIR$\..\..\Source\Ui.txt + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\Benchmark\Obj\c_input.pbi - $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\Benchmark\Obj\c_loader.r79 + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\Benchmark\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\Benchmark\Exe\LMS_ARM.d79 + $PROJ_DIR$\Benchmark\Obj\c_ioctrl.r79 + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\Benchmark\Obj\c_comm.pbi + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\Benchmark\Obj\d_sound.pbi + $PROJ_DIR$\Benchmark\Obj\Cstartup.r79 + $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Submenu02.rms + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\Submenu01.rms + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\Submenu04.rms $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\Benchmark\Obj\c_ui.r79 - $PROJ_DIR$\Benchmark\Obj\d_button.r79 + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\Benchmark\Obj\d_bt.pbi + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.h + $PROJ_DIR$\Benchmark\Obj\d_display.pbi + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_usb.r + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\Benchmark\Obj\c_sound.pbi + $PROJ_DIR$\..\..\Source\modules.h $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\Benchmark\Obj\d_input.pbi + $PROJ_DIR$\Benchmark\Obj\d_button.r79 + $PROJ_DIR$\..\..\Source\Wait.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\c_ui.iom + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\Benchmark\Obj\c_ui.r79 + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $PROJ_DIR$\Benchmark\Obj\c_output.pbi + $PROJ_DIR$\Benchmark\Obj\c_button.r79 + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\d_loader.r + $PROJ_DIR$\Benchmark\Obj\m_sched.pbi + $PROJ_DIR$\Benchmark\Obj\d_output.r79 + $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\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\Benchmark\Obj\d_timer.pbi + $PROJ_DIR$\Benchmark\Obj\c_button.pbi + $PROJ_DIR$\..\..\Source\BtTest.inc $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\Benchmark\Obj\d_hispeed.pbi + $PROJ_DIR$\Benchmark\Obj\d_output.pbi + $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\Benchmark\Obj\d_hispeed.r79 - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\m_sched.c - XLINK - 112 + BICOMP + 179 - - - - $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 86 - - - BICOMP - 22 + 103 - ICCARM - 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 + 97 161 136 151 68 43 181 157 104 184 99 108 128 52 149 172 3 150 92 51 107 - 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 + ICCARM + 97 161 136 151 68 43 181 157 104 184 99 108 128 52 149 172 3 150 92 51 107 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_usb.c - - ICCARM - 27 - BICOMP - 104 + 55 - - ICCARM - 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 + 82 + + 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 + 97 136 151 68 191 156 - - - - $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd - - BILINK - 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 + ICCARM + 97 136 151 68 191 156 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_button.c - ICCARM - 23 + BICOMP + 188 - BICOMP - 4 + ICCARM + 174 - ICCARM - 84 197 146 117 77 83 + BICOMP + 97 161 184 99 5 - BICOMP - 84 197 146 117 77 83 + ICCARM + 97 161 184 99 5 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 114 + BICOMP + 59 - BICOMP - 135 + ICCARM + 84 - ICCARM - 84 197 146 117 195 37 144 196 + BICOMP + 97 161 92 177 104 96 167 130 99 40 127 114 3 150 159 186 94 83 45 6 15 90 16 142 86 - BICOMP - 84 197 146 117 195 37 144 196 + ICCARM + 97 161 92 177 104 96 167 130 99 40 127 114 3 150 159 186 94 83 63 45 6 15 90 16 142 86 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\c_comm.c - ICCARM - 140 + BICOMP + 135 - BICOMP - 94 + ICCARM + 9 - ICCARM - 88 74 20 57 124 139 18 90 84 197 146 117 137 128 + BICOMP + 97 161 127 96 12 167 92 40 181 191 93 121 16 94 83 45 6 15 90 144 175 117 120 142 168 89 8 102 153 - BICOMP - 88 74 20 124 139 18 90 84 197 146 117 137 128 + ICCARM + 97 161 127 96 12 167 92 40 181 191 93 121 16 94 83 63 45 6 15 90 144 175 117 120 142 168 89 8 102 153 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\d_timer.c - ICCARM - 63 + BICOMP + 187 - BICOMP - 141 + ICCARM + 111 - 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 + BICOMP + 97 136 151 68 159 158 - 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 + ICCARM + 97 136 151 68 159 158 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\c_display.c - ICCARM - 11 + BICOMP + 57 - BICOMP - 92 + ICCARM + 78 - ICCARM - 84 197 146 117 118 30 + BICOMP + 16 94 83 45 6 15 90 97 161 40 52 112 - BICOMP - 84 197 146 117 118 30 + ICCARM + 16 94 83 63 45 6 15 90 97 161 40 52 112 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\c_input.c - ICCARM - 50 + BICOMP + 124 - BICOMP - 29 + ICCARM + 67 - ICCARM - 84 197 146 117 125 110 + BICOMP + 97 161 157 104 155 177 - BICOMP - 84 197 146 117 125 110 + ICCARM + 97 161 157 104 155 177 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c - ICCARM - 48 + BICOMP + 10 - BICOMP - 39 + ICCARM + 133 - ICCARM - 84 197 146 117 73 71 + BICOMP + 97 161 12 51 126 - BICOMP - 84 197 146 117 73 71 + ICCARM + 97 161 12 51 126 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\c_loader.c - ICCARM - 100 + BICOMP + 115 - BICOMP - 67 + ICCARM + 125 - ICCARM - 84 197 146 117 44 106 + BICOMP + 97 161 96 12 106 108 - BICOMP - 84 197 146 117 44 106 + ICCARM + 97 161 96 12 106 108 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c - ICCARM - 32 + BICOMP + 80 - BICOMP - 95 + ICCARM + 69 - ICCARM - 84 197 146 117 194 10 + BICOMP + 97 161 114 104 149 73 - BICOMP - 84 197 146 117 194 10 + ICCARM + 97 161 114 104 149 73 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_output.c - ICCARM - 1 + BICOMP + 173 - BICOMP - 15 + ICCARM + 98 - ICCARM - 84 126 197 146 117 79 52 195 37 55 131 14 191 107 152 5 142 145 76 85 132 + BICOMP + 186 94 83 45 6 15 90 74 97 161 177 172 42 40 - BICOMP - 84 126 197 146 117 79 52 195 37 55 131 14 191 107 152 5 142 145 76 85 132 + ICCARM + 186 94 83 63 45 6 15 90 74 97 161 177 172 42 40 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\c_sound.c - ICCARM - 134 + BICOMP + 160 - BICOMP - 96 + ICCARM + 13 - ICCARM - 88 74 20 57 124 139 18 90 84 126 49 107 98 + BICOMP + 142 94 83 45 6 15 90 16 97 161 130 96 128 47 - BICOMP - 88 74 20 124 139 18 90 84 126 49 107 98 + ICCARM + 142 94 83 63 45 6 15 90 16 97 161 130 96 128 47 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\c_ui.c - ICCARM - 33 + BICOMP + 72 - BICOMP - 184 + ICCARM + 170 + + BICOMP + 186 94 83 45 6 15 90 16 144 175 117 120 142 168 89 8 102 153 97 161 167 107 136 151 68 40 96 99 130 104 177 12 92 127 114 182 169 79 48 183 185 171 76 165 64 140 71 44 193 113 62 60 50 176 70 77 162 46 56 41 147 123 87 95 2 11 119 131 143 141 145 110 146 116 0 189 122 192 + ICCARM - 84 126 195 37 144 68 + 186 94 83 63 45 6 15 90 16 144 175 117 120 142 168 89 8 102 153 97 161 167 107 136 151 68 40 96 99 130 104 177 12 92 127 114 182 169 79 48 183 185 171 76 165 64 140 71 44 193 113 62 60 50 176 70 77 162 46 56 41 147 123 87 95 2 11 119 131 143 141 145 110 146 116 0 189 122 192 + + + + + $PROJ_DIR$\..\Include\Cstartup.s79 + + + AARM + 138 + + - BICOMP - 84 126 195 37 144 68 + AARM + 154 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - ICCARM - 109 + BICOMP + 105 - BICOMP - 75 + ICCARM + 129 - ICCARM - 84 126 34 85 137 + BICOMP + 49 - BICOMP - 84 126 34 85 137 + ICCARM + 49 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\d_bt.c - ICCARM - 136 + BICOMP + 148 - BICOMP - 0 + ICCARM + 166 - ICCARM - 84 126 65 34 2 14 + BICOMP + 97 161 136 151 68 121 53 16 94 83 45 6 15 90 - BICOMP - 84 126 65 34 2 14 + ICCARM + 97 161 136 151 68 121 53 16 94 83 63 45 6 15 90 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_button.c - ICCARM - 120 + BICOMP + 109 - BICOMP - 28 + ICCARM + 164 - ICCARM - 84 126 116 37 152 118 + BICOMP + 97 136 151 68 5 81 - BICOMP - 84 126 116 37 152 118 + ICCARM + 97 136 151 68 5 81 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_display.c - ICCARM - 89 + BICOMP + 152 - BICOMP - 38 + ICCARM + 88 - ICCARM - 59 74 20 57 124 139 18 90 119 84 126 68 5 125 49 + BICOMP + 97 136 151 68 16 94 83 45 6 15 90 112 75 - BICOMP - 59 74 20 124 139 18 90 119 84 126 68 5 125 49 + ICCARM + 97 136 151 68 112 75 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - ICCARM - 81 + BICOMP + 194 - BICOMP - 7 + ICCARM + 197 - ICCARM - 105 74 20 57 124 139 18 90 88 84 126 47 65 191 73 + BICOMP + 97 136 151 68 93 14 - BICOMP - 105 74 20 124 139 18 90 88 84 126 47 65 191 73 + ICCARM + 97 136 151 68 93 14 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 187 + BICOMP + 163 - BICOMP - 121 + ICCARM + 66 - 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 + BICOMP + 97 136 151 68 157 104 155 190 - 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 + ICCARM + 97 136 151 68 157 104 155 190 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\d_ioctrl.c - AARM - 101 + BICOMP + 65 + + + ICCARM + 100 - AARM - 147 + BICOMP + 16 94 83 45 6 15 90 97 136 151 68 126 58 + + + ICCARM + 16 94 83 63 45 6 15 90 97 136 151 68 126 58 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_loader.c - ICCARM - 192 + BICOMP + 101 - BICOMP - 36 + ICCARM + 118 - ICCARM - 108 + BICOMP + 97 161 136 151 68 106 178 16 94 83 45 6 15 90 144 175 117 120 142 168 89 8 102 153 - BICOMP - 108 + ICCARM + 97 161 136 151 68 106 178 16 94 83 63 45 6 15 90 144 175 117 120 142 168 89 8 102 153 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - ICCARM - 190 + BICOMP + 61 - BICOMP - 153 + ICCARM + 91 - ICCARM - 84 126 197 146 117 42 123 88 74 20 57 124 139 18 90 + BICOMP + 97 136 151 68 73 196 - BICOMP - 84 126 197 146 117 42 123 88 74 20 124 139 18 90 + ICCARM + 97 136 151 68 73 196 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_output.c - ICCARM - 188 + BICOMP + 195 - BICOMP - 97 + ICCARM + 180 - ICCARM - 84 197 146 117 138 66 + BICOMP + 97 136 151 68 42 134 - BICOMP - 84 197 146 117 138 66 + ICCARM + 97 136 151 68 42 134 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_sound.c - ICCARM - 12 + BICOMP + 137 - BICOMP - 149 + ICCARM + 54 - ICCARM - 84 197 146 117 98 129 + BICOMP + 97 136 151 68 47 85 - BICOMP - 84 197 146 117 88 74 20 124 139 18 90 98 129 + ICCARM + 97 136 151 68 47 85 - $PROJ_DIR$\..\..\Source\c_button.c + [ROOT_NODE] - ICCARM - 25 - - - BICOMP - 16 + XLINK + 132 + + + $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd - ICCARM - 84 126 55 131 138 - - - BICOMP - 84 126 55 131 138 + BILINK + 105 188 59 135 57 124 10 115 80 173 160 72 148 109 152 194 163 65 101 61 195 137 187 55 179 @@ -824,136 +824,172 @@ Bin Output - $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_button.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\c_button.c + $TOOLKIT_DIR$\inc\xtinfo.h + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_hispeed.r + $TOOLKIT_DIR$\inc\DLib_Threads.h + $TOOLKIT_DIR$\inc\string.h $PROJ_DIR$\..\..\Source\c_cmd.c - $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\d_timer.c + $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\d_sound.c $PROJ_DIR$\..\..\Source\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$\..\..\Source\d_output.h $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 + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_bt.r + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $TOOLKIT_DIR$\inc\string.h - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\Lib\dl4tptinl8n.h $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\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\Icons.txt $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\Ok.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_button.r + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.h + $TOOLKIT_DIR$\inc\yvals.h + $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\stdconst.h + $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\Object\d_display.s + $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\d_display.r79 + $PROJ_DIR$\..\Object\d_led.r79 + $PROJ_DIR$\..\Object\d_display.pbi $PROJ_DIR$\..\Object\d_lowspeed.r79 - $PROJ_DIR$\..\..\Source\c_button.iom + $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $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\Submenu03.rms + $PROJ_DIR$\..\Object\d_ioctrl.s + $PROJ_DIR$\..\..\Source\d_led.h + $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\c_output.s + $PROJ_DIR$\..\Object\d_usb.s + $PROJ_DIR$\..\Object\c_cmd.pbi + $PROJ_DIR$\..\Object\d_hispeed.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\Cstartup_SAM7.s + $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\Object\c_sound.s + $PROJ_DIR$\..\Object\c_lowspeed.s $PROJ_DIR$\..\..\Source\c_led.iom + $TOOLKIT_DIR$\inc\ymath.h + $PROJ_DIR$\..\Object\c_comm.s + $PROJ_DIR$\..\Object\c_lowspeed.pbi + $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + $PROJ_DIR$\..\Object\d_lowspeed.s + $PROJ_DIR$\..\Object\c_cmd.r79 + $PROJ_DIR$\..\Object\d_sound.pbi + $PROJ_DIR$\..\Object\d_sound.s + $PROJ_DIR$\..\Object\d_output.r79 + $PROJ_DIR$\..\Object\c_display.s + $PROJ_DIR$\..\Object\c_sound.pbi + $PROJ_DIR$\..\Object\c_loader.r79 + $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\Object\c_button.pbi + $PROJ_DIR$\..\Object\c_loader.pbi + $PROJ_DIR$\..\Object\d_output.pbi + $PROJ_DIR$\..\Object\d_lowspeed.pbi + $PROJ_DIR$\..\Object\LMS_ARM.map + $PROJ_DIR$\..\Object\m_sched.s + $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\Object\d_ioctrl.r79 + $PROJ_DIR$\..\Object\m_sched.pbi + $PROJ_DIR$\..\Object\d_timer.r79 + $PROJ_DIR$\..\Object\c_ioctrl.pbi + $PROJ_DIR$\..\Object\d_sound.r79 + $PROJ_DIR$\..\Object\c_comm.r79 + $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_ui.s + $PROJ_DIR$\..\Object\LMS_ARM.pbd $PROJ_DIR$\..\Object\c_comm.pbi + $PROJ_DIR$\..\Object\d_timer.s + $PROJ_DIR$\..\Object\c_input.pbi $PROJ_DIR$\..\Object\d_loader.r79 - $PROJ_DIR$\..\Object\d_output.pbi - $PROJ_DIR$\..\Object\c_loader.pbi + $PROJ_DIR$\..\Object\c_ioctrl.s + $PROJ_DIR$\..\Object\c_button.r79 $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$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_display.pbi $PROJ_DIR$\..\Object\LMS_ARM.a79 $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\c_ioctrl.s - $PROJ_DIR$\..\Object\LMS_ARM.pbd - $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 - $TOOLKIT_DIR$\inc\math.h - $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\Object\c_output.s - $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\d_bt.pbi + $PROJ_DIR$\..\..\Source\d_led.r $PROJ_DIR$\..\Object\c_output.pbi $PROJ_DIR$\..\Object\d_bt.s $PROJ_DIR$\..\Object\d_usb.r79 @@ -962,1159 +998,1115 @@ $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_sound.s - $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_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$\..\..\Source\d_led.r + $PROJ_DIR$\..\..\Source\c_button.iom + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_loader.h $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\Ok.txt - $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$\..\Object\d_output.r79 - $PROJ_DIR$\..\Object\d_usb.s - $PROJ_DIR$\..\Object\c_cmd.pbi - $TOOLKIT_DIR$\inc\ymath.h - $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\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 - $PROJ_DIR$\..\Object\c_input.pbi - $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 - $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\c_button.c - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $TOOLKIT_DIR$\inc\xtls.h + $PROJ_DIR$\..\..\Source\Ui.txt + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\c_comm.iom $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Submenu02.rms + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\Submenu01.rms + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.h + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_usb.r $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\c_ui.iom + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\d_loader.r + $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\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\BtTest.inc $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.r - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\m_sched.c - XLINK - 113 186 102 + BICOMP + 140 - - - - $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 154 - - - BICOMP - 172 + 106 - 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 + BICOMP + 79 216 197 208 57 40 228 213 176 231 174 179 193 49 206 223 3 207 73 48 178 - 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 + ICCARM + 79 216 197 208 57 40 228 213 176 231 174 179 193 49 206 223 3 207 73 48 178 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_usb.c - ICCARM - 118 + BICOMP + 99 - BICOMP - 93 + ICCARM + 168 - 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 + BICOMP + 79 197 208 57 236 212 - 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 + ICCARM + 79 197 208 57 236 212 - $PROJ_DIR$\..\Object\c_button.s + $PROJ_DIR$\..\..\Source\c_button.c - AARM - 185 + BICOMP + 131 - - - - $PROJ_DIR$\..\Object\c_ioctrl.s - - AARM - 98 + ICCARM + 154 - - - $PROJ_DIR$\..\Object\LMS_ARM.pbd - BILINK - 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 + BICOMP + 79 216 231 174 5 + + + ICCARM + 79 216 231 174 5 - $PROJ_DIR$\..\Object\c_ui.s + $PROJ_DIR$\..\..\Source\c_cmd.c - AARM - 136 + BICOMP + 104 - - - - $PROJ_DIR$\..\Object\m_sched.s - - AARM - 174 + ICCARM + 123 - - - $PROJ_DIR$\..\Object\d_display.s - + - AARM - 158 + BICOMP + 79 216 73 226 176 78 219 194 174 37 192 183 197 208 57 3 207 215 233 75 67 42 6 12 72 13 200 119 116 80 69 - + + ICCARM + 79 216 73 226 176 78 219 194 174 37 192 183 197 208 57 3 207 215 233 75 67 55 42 6 12 72 13 200 119 116 80 69 + + - $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\..\Source\c_comm.c - XLINK - 186 102 + BICOMP + 149 + + + ICCARM + 144 - 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 + BICOMP + 79 216 192 78 10 219 73 37 228 236 74 188 13 75 67 42 6 12 72 202 224 185 187 200 220 71 8 175 209 - - - - $PROJ_DIR$\..\Object\Cstartup_SAM7.s - - AARM - 145 + ICCARM + 79 216 192 78 10 219 73 37 228 236 74 188 13 75 67 55 42 6 12 72 202 224 185 187 200 220 71 8 175 209 - + - $PROJ_DIR$\..\Object\c_output.s + $PROJ_DIR$\..\..\Source\d_timer.c - AARM - 103 + BICOMP + 88 - - - - $PROJ_DIR$\..\..\Source\c_led.c - ICCARM - 164 + 141 + + BICOMP + 79 197 208 57 215 214 + ICCARM - 58 85 92 140 120 + 79 197 208 57 215 214 - $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\c_display.c + + BICOMP + 159 + ICCARM - 139 + 120 - ICCARM - 58 239 195 78 120 155 + BICOMP + 13 75 67 42 6 12 72 79 216 37 49 181 - - - - $PROJ_DIR$\..\Object\d_bt.s - - AARM - 162 + ICCARM + 13 75 67 55 42 6 12 72 79 216 37 49 181 - + - $PROJ_DIR$\..\Object\d_input.s + $PROJ_DIR$\..\..\Source\c_input.c - AARM - 180 + BICOMP + 151 - - - - $PROJ_DIR$\..\Object\c_sound.s - - AARM - 104 + ICCARM + 157 - - - $PROJ_DIR$\..\Object\c_lowspeed.s - + - AARM - 142 + BICOMP + 79 216 213 176 211 226 78 13 75 67 42 6 12 72 - - - - $PROJ_DIR$\..\Object\c_display.s - - AARM - 138 + ICCARM + 79 216 213 176 211 226 78 13 75 67 55 42 6 12 72 - + - $PROJ_DIR$\..\Object\d_lowspeed.s + $PROJ_DIR$\..\..\Source\c_ioctrl.c - AARM - 90 + BICOMP + 142 - - - - $PROJ_DIR$\..\Object\d_ioctrl.s - - AARM - 125 + ICCARM + 156 - - - $PROJ_DIR$\..\Object\d_button.s - + - AARM - 137 + BICOMP + 79 216 10 48 191 - - - - $PROJ_DIR$\..\Object\d_sound.s - - AARM - 117 + ICCARM + 79 216 10 48 191 - + - $PROJ_DIR$\..\Object\d_usb.s + $PROJ_DIR$\..\..\Source\c_loader.c - AARM + BICOMP 132 - - - - $PROJ_DIR$\..\Object\d_loader.s - - AARM - 94 + ICCARM + 129 - - - $PROJ_DIR$\..\Object\c_cmd.s - + - AARM - 154 + BICOMP + 79 216 78 10 177 179 13 75 67 42 6 12 72 - - - - $PROJ_DIR$\..\Object\c_loader.s - - AARM - 106 + ICCARM + 79 216 78 10 177 179 13 75 67 55 42 6 12 72 - + - $PROJ_DIR$\..\Object\d_output.s + $PROJ_DIR$\..\..\Source\c_lowspeed.c - AARM - 170 + BICOMP + 118 - - - - $PROJ_DIR$\..\Object\d_hispeed.s - - AARM - 141 + ICCARM + 83 - - - $PROJ_DIR$\..\Object\c_input.s - + - AARM - 99 + BICOMP + 79 216 183 176 206 60 - - - - $PROJ_DIR$\..\Object\c_comm.s - - AARM - 118 + ICCARM + 79 216 183 176 206 60 - + - $PROJ_DIR$\..\Object\d_timer.s + $PROJ_DIR$\..\..\Source\c_output.c - AARM - 122 + BICOMP + 166 + + + ICCARM + 161 + + + BICOMP + 233 75 67 42 6 12 72 61 79 216 226 223 39 37 + + + ICCARM + 233 75 67 55 42 6 12 72 61 79 216 226 223 39 37 + + - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_sound.c - ICCARM - 141 + BICOMP + 128 - BICOMP - 114 + ICCARM + 162 - ICCARM - 58 239 195 78 52 57 + BICOMP + 200 75 67 42 6 12 72 13 79 216 194 78 193 44 - BICOMP - 58 239 195 78 52 57 + ICCARM + 200 75 67 55 42 6 12 72 13 79 216 194 78 193 44 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\c_ui.c - ICCARM - 180 + BICOMP + 171 - BICOMP - 165 + ICCARM + 172 - ICCARM - 58 239 195 78 237 20 193 238 + BICOMP + 233 75 67 42 6 12 72 13 202 224 185 187 200 220 71 8 175 209 79 216 219 178 197 208 57 37 78 174 194 176 226 10 73 192 183 229 221 65 45 230 232 222 63 218 56 198 59 41 238 182 54 53 47 225 58 64 217 43 51 38 205 190 70 77 2 9 186 195 201 199 94 203 180 204 184 0 234 189 237 - BICOMP - 58 239 195 78 237 20 193 238 + ICCARM + 233 75 67 55 42 6 12 72 13 202 224 185 187 200 220 71 8 175 209 79 216 219 178 197 208 57 37 78 174 194 176 226 10 73 192 183 229 221 65 45 230 232 222 63 218 56 198 59 41 238 182 54 53 47 225 58 64 217 43 51 38 205 190 70 77 2 9 186 195 201 199 94 203 180 204 184 0 234 189 237 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\Include\Cstartup.s79 - ICCARM - 125 + AARM + 169 + + + + + AARM + 210 + + + + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + BICOMP - 100 + 146 - - ICCARM - 61 50 12 35 83 190 10 62 58 239 195 78 166 87 + 89 + + BICOMP - 61 50 12 83 190 10 62 58 239 195 78 166 87 + 46 + + + ICCARM + 46 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\d_bt.c - ICCARM - 94 + BICOMP + 164 - BICOMP - 105 + ICCARM + 90 - 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 + BICOMP + 79 216 197 208 57 188 50 13 75 67 42 6 12 72 - 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 + ICCARM + 79 216 197 208 57 188 50 13 75 67 55 42 6 12 72 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\d_button.c - ICCARM - 90 + BICOMP + 108 - BICOMP - 111 + ICCARM + 173 - ICCARM - 58 239 195 78 79 16 + BICOMP + 79 197 208 57 5 66 - BICOMP - 58 239 195 78 79 16 + ICCARM + 79 197 208 57 5 66 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\d_display.c - ICCARM - 170 + BICOMP + 86 - BICOMP - 95 + ICCARM + 84 - ICCARM - 58 239 195 78 84 73 + BICOMP + 79 197 208 57 181 62 - BICOMP - 58 239 195 78 84 73 + ICCARM + 79 197 208 57 181 62 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - ICCARM - 117 + BICOMP + 105 - BICOMP - 168 + ICCARM + 81 - ICCARM - 58 239 195 78 49 47 152 + BICOMP + 79 197 208 57 74 11 - BICOMP - 58 239 195 78 49 47 152 + ICCARM + 79 197 208 57 74 11 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 122 + BICOMP + 93 - BICOMP - 128 + ICCARM + 98 - ICCARM - 58 239 195 78 24 70 + BICOMP + 79 197 208 57 213 176 211 235 - BICOMP - 58 239 195 78 24 70 + ICCARM + 79 197 208 57 213 176 211 235 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - ICCARM - 132 + BICOMP + 158 - BICOMP - 181 + ICCARM + 139 - ICCARM - 58 239 195 78 236 6 + BICOMP + 13 75 67 42 6 12 72 79 197 208 57 191 52 - BICOMP - 58 239 195 78 236 6 + ICCARM + 13 75 67 55 42 6 12 72 79 197 208 57 191 52 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\d_loader.c - ICCARM - 174 + BICOMP + 163 - BICOMP - 126 + ICCARM + 152 - ICCARM - 58 85 239 195 78 54 30 237 20 33 91 8 234 71 200 2 191 194 51 59 156 + BICOMP + 79 216 197 208 57 177 227 13 75 67 42 6 12 72 202 224 185 187 200 220 71 8 175 209 - BICOMP - 58 85 239 195 78 54 30 237 20 33 91 8 234 71 200 2 191 194 51 59 156 + ICCARM + 79 216 197 208 57 177 227 13 75 67 55 42 6 12 72 202 224 185 187 200 220 71 8 175 209 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - ICCARM - 138 + BICOMP + 134 - BICOMP - 144 + ICCARM + 87 - ICCARM - 61 50 12 35 83 190 10 62 58 85 28 71 65 + BICOMP + 79 197 208 57 60 239 - BICOMP - 61 50 12 83 190 10 62 58 85 28 71 65 + ICCARM + 79 197 208 57 60 239 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_output.c - ICCARM - 99 + BICOMP + 133 - BICOMP - 189 + ICCARM + 126 - ICCARM - 58 85 237 20 193 44 42 61 50 12 35 83 190 10 62 + BICOMP + 79 197 208 57 39 196 - BICOMP - 58 85 237 20 193 44 42 61 50 12 83 190 10 62 + ICCARM + 79 197 208 57 39 196 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_sound.c - - ICCARM - 98 - BICOMP 124 - - ICCARM - 58 85 18 59 166 + 143 + + BICOMP - 58 85 18 59 166 + 79 197 208 57 44 68 121 + + + ICCARM + 79 197 208 57 44 68 121 - $PROJ_DIR$\..\..\Source\c_loader.c + [ROOT_NODE] - ICCARM - 106 + XLINK + 130 135 160 + + + + $PROJ_DIR$\..\..\Source\d_led.c + - BICOMP - 96 + ICCARM + 85 ICCARM - 58 85 42 18 0 8 61 50 12 35 83 190 10 62 - - - BICOMP - 58 85 42 18 0 8 61 50 12 83 190 10 62 + 79 197 208 57 96 165 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\Object\d_display.s - ICCARM - 142 - - - BICOMP - 184 + AARM + 84 - + + + $PROJ_DIR$\..\Object\d_button.s + - ICCARM - 58 85 77 20 200 79 + AARM + 173 + + + + $PROJ_DIR$\..\Object\d_ioctrl.s + - BICOMP - 58 85 77 20 200 79 + AARM + 139 - + - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\Object\d_output.s - ICCARM - 103 + AARM + 126 + + + + $PROJ_DIR$\..\Object\d_hispeed.s + - BICOMP - 130 + AARM + 81 - + + + $PROJ_DIR$\..\Object\c_input.s + - ICCARM - 37 50 12 35 83 190 10 62 80 58 85 44 2 84 28 + AARM + 157 + + + + $PROJ_DIR$\..\Object\c_output.s + - BICOMP - 37 50 12 83 190 10 62 80 58 85 44 2 84 28 + AARM + 161 - + - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\Object\d_usb.s - ICCARM - 104 + AARM + 168 + + + + $PROJ_DIR$\..\Object\d_loader.s + - BICOMP - 150 + AARM + 152 - + + + $PROJ_DIR$\..\Object\c_cmd.s + - ICCARM - 69 50 12 35 83 190 10 62 61 58 85 27 42 234 49 + AARM + 123 + + + + $PROJ_DIR$\..\Object\c_loader.s + - BICOMP - 69 50 12 83 190 10 62 61 58 85 27 42 234 49 + AARM + 129 - + - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\Object\Cstartup_SAM7.s - ICCARM - 136 + AARM + 89 + + + + $PROJ_DIR$\..\Object\c_sound.s + - BICOMP - 135 + AARM + 162 - + + + $PROJ_DIR$\..\Object\c_lowspeed.s + - 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 + AARM + 83 + + + + $PROJ_DIR$\..\Object\c_comm.s + - 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 + AARM + 144 - + - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\Object\d_lowspeed.s AARM - 133 + 87 - + + + $PROJ_DIR$\..\Object\d_sound.s + AARM - 196 + 143 - + - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\Object\c_display.s - ICCARM - 145 + AARM + 120 + + + + $PROJ_DIR$\..\Object\LMS_ARM.d79 + - BICOMP - 101 + XLINK + 135 160 - ICCARM - 72 - - - BICOMP - 72 + XLINK + 112 169 89 154 123 144 120 157 156 129 83 161 162 172 90 173 84 81 98 139 152 87 126 143 141 168 106 145 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\Object\m_sched.s - ICCARM - 162 + AARM + 106 + + + + $PROJ_DIR$\..\..\Source\c_led.c + - BICOMP - 151 + ICCARM + 92 ICCARM - 58 85 239 195 78 22 82 61 50 12 35 83 190 10 62 - - - BICOMP - 58 85 239 195 78 22 82 61 50 12 83 190 10 62 + 79 216 115 137 96 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\Object\c_ui.s - ICCARM - 137 - - - BICOMP - 176 + AARM + 172 + + + $PROJ_DIR$\..\Object\LMS_ARM.pbd - ICCARM - 58 239 195 78 167 43 - - - BICOMP - 58 239 195 78 167 43 + BILINK + 146 131 104 149 159 151 142 132 118 166 128 171 164 108 86 105 93 158 163 134 133 124 88 99 140 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\Object\d_timer.s - ICCARM - 158 - - - BICOMP - 160 + AARM + 141 - - - ICCARM - 58 239 195 78 65 88 - + + + $PROJ_DIR$\..\Object\c_ioctrl.s + - BICOMP - 58 239 195 78 65 88 + AARM + 156 - + - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\Object\c_button.s - ICCARM - 185 + AARM + 154 + + + + $PROJ_DIR$\..\Object\d_bt.s + - BICOMP - 116 + AARM + 90 - - - ICCARM - 58 85 33 91 167 - + + + $PROJ_DIR$\..\Object\d_input.s + - BICOMP - 58 85 33 91 167 + AARM + 98 - + Flash Debug - $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_button.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\c_button.c + $TOOLKIT_DIR$\inc\xtinfo.h + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_hispeed.r + $TOOLKIT_DIR$\inc\DLib_Threads.h + $TOOLKIT_DIR$\inc\string.h $PROJ_DIR$\..\..\Source\c_cmd.c - $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\d_timer.c + $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\d_sound.c $PROJ_DIR$\..\..\Source\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$\..\..\Source\d_output.h $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 + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_bt.r + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\RCXintro_5.txt $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $TOOLKIT_DIR$\inc\string.h - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\Lib\dl4tptinl8n.h $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\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\Icons.txt $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\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\Ok.txt + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_button.r + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.h + $TOOLKIT_DIR$\inc\yvals.h $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$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\stdconst.h + $TOOLKIT_DIR$\inc\limits.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_led.r79 $PROJ_DIR$\..\Object\d_display.pbi - $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\Object\d_lowspeed.r79 + $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 $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$\..\..\Source\Submenu03.rms + $PROJ_DIR$\..\..\Source\d_led.h + $PROJ_DIR$\..\Object\d_input.r79 + $PROJ_DIR$\..\Object\d_usb.pbi $PROJ_DIR$\..\Object\c_cmd.pbi - $TOOLKIT_DIR$\inc\ymath.h + $PROJ_DIR$\..\Object\d_hispeed.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$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\..\Source\c_led.iom + $TOOLKIT_DIR$\inc\ymath.h $PROJ_DIR$\..\Object\c_lowspeed.pbi - $PROJ_DIR$\..\Object\c_button.r79 + $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + $PROJ_DIR$\..\Object\c_cmd.r79 + $PROJ_DIR$\..\Object\d_sound.pbi + $PROJ_DIR$\..\Object\d_output.r79 + $PROJ_DIR$\..\Object\c_sound.pbi + $PROJ_DIR$\..\Object\c_loader.r79 + $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\d_net.c + $PROJ_DIR$\..\..\Source\d_avrcomm.h + $PROJ_DIR$\..\..\Source\c_hispeed.h + $PROJ_DIR$\..\..\Source\c_hispeed.iom + $PROJ_DIR$\..\Object\c_net.r79 + $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\Object\c_button.pbi + $PROJ_DIR$\..\Object\c_loader.pbi + $PROJ_DIR$\..\Object\d_output.pbi + $PROJ_DIR$\..\Object\d_lowspeed.pbi $PROJ_DIR$\..\Object\LMS_ARM.map + $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\Object\d_ioctrl.r79 + $PROJ_DIR$\..\Object\m_sched.pbi + $PROJ_DIR$\..\Object\d_timer.r79 + $PROJ_DIR$\..\Object\c_ioctrl.pbi + $PROJ_DIR$\..\Object\d_sound.r79 + $PROJ_DIR$\..\Object\c_comm.r79 + $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\LMS_ARM.pbd + $PROJ_DIR$\..\Object\c_comm.pbi $PROJ_DIR$\..\Object\c_input.pbi + $PROJ_DIR$\..\Object\d_loader.r79 + $PROJ_DIR$\..\Object\c_button.r79 + $PROJ_DIR$\..\Object\c_ioctrl.r79 + $PROJ_DIR$\..\Object\c_input.r79 + $PROJ_DIR$\..\Object\d_ioctrl.pbi + $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\Object\c_output.r79 + $PROJ_DIR$\..\Object\c_sound.r79 + $PROJ_DIR$\..\Object\d_loader.pbi + $PROJ_DIR$\..\Object\d_bt.pbi + $PROJ_DIR$\..\..\Source\d_led.r + $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_avrcomm.r79 $PROJ_DIR$\..\..\Source\c_net.c - $PROJ_DIR$\..\Object\d_sensor.r79 + $PROJ_DIR$\..\..\Source\d_sensor.r + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\Object\d_motor.r79 $PROJ_DIR$\..\Object\d_net.r79 $PROJ_DIR$\..\Include\Board.h $PROJ_DIR$\..\Object\c_motor.r79 @@ -2122,18 +2114,14 @@ $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$\..\..\Source\d_net.c - $PROJ_DIR$\..\..\Source\d_motor.c - $PROJ_DIR$\..\Object\c_net.r79 + $PROJ_DIR$\..\..\Source\c_hispeed.c + $PROJ_DIR$\SrcIAR\Cstartup.s79 + $PROJ_DIR$\..\Object\LMS_ARM.sim $PROJ_DIR$\..\..\Source\c_sensor.c - $PROJ_DIR$\..\..\Source\c_motor.c - $PROJ_DIR$\..\..\Source\d_sensor.r + $PROJ_DIR$\..\Include\ioat91sam7s64.h + $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\Source\c_motor.h + $PROJ_DIR$\..\..\Source\c_net.h $PROJ_DIR$\..\Object\d_avrcomm.r79 $PROJ_DIR$\..\..\Source\d_net.r $PROJ_DIR$\..\..\Source\d_avrcomm.r @@ -2142,416 +2130,523 @@ $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_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$\..\..\Source\d_avrcomm.c - $PROJ_DIR$\..\..\Source\main.c - $PROJ_DIR$\..\..\include\lib_AT91SAM7S64.h + $PROJ_DIR$\..\Include\AT91SAM7S64.h + $PROJ_DIR$\Flash_Debug\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\..\..\Source\c_bt.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\c_avrcomm.h + $PROJ_DIR$\Flash_Debug\Obj\Cstartup.r79 + $PROJ_DIR$\..\..\include\lib_AT91SAM7S64.h + $PROJ_DIR$\..\..\Source\c_avrcomm.c + $PROJ_DIR$\SrcIAR\Board.h $PROJ_DIR$\..\..\Source\d_motor.h $PROJ_DIR$\..\..\Source\d_motor.r + $PROJ_DIR$\..\..\Source\d_sensor.c $PROJ_DIR$\..\..\Source\d_sensor.h $PROJ_DIR$\..\..\Source\c_sensor.iom $PROJ_DIR$\..\src\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$\Flash_Debug\Obj\Cstartup.r79 + $PROJ_DIR$\..\..\Source\c_sensor.h + $PROJ_DIR$\..\..\Source\c_usb.c $PROJ_DIR$\..\Object\main.r79 $PROJ_DIR$\..\Object\c_sensor.r79 - $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$\..\Object\c_hispeed.r79 + $PROJ_DIR$\..\..\Source\c_bt.iom + $PROJ_DIR$\..\Object\d_sensor.r79 + $PROJ_DIR$\..\..\Source\c_button.iom + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $TOOLKIT_DIR$\inc\xtls.h + $PROJ_DIR$\..\..\Source\Ui.txt + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Submenu02.rms + $TOOLKIT_DIR$\inc\stdlib.h $PROJ_DIR$\..\..\Source\Submenu01.rms + $TOOLKIT_DIR$\inc\ctype.h $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\RCXintro_14.txt $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.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 - $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\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$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_usb.r $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\c_ui.iom + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\d_loader.r + $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\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\BtTest.inc $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.r - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\m_sched.c - XLINK - 164 197 109 + BICOMP + 128 - - - - $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 142 - - - BICOMP - 156 + 98 - ICCARM - 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 + 79 249 230 241 57 40 261 246 209 264 207 212 226 49 239 256 3 240 73 48 211 - 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 + ICCARM + 79 249 230 241 57 40 261 246 209 264 207 212 226 49 239 256 3 240 73 48 211 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_usb.c - ICCARM - 113 + BICOMP + 95 - BICOMP - 93 + ICCARM + 150 - 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 + BICOMP + 79 230 241 57 269 245 - 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 + ICCARM + 79 230 241 57 269 245 - $PROJ_DIR$\..\..\Source\c_bt.c + $PROJ_DIR$\..\..\Source\c_button.c - ICCARM - 172 + BICOMP + 120 - - ICCARM - 58 85 180 193 22 51 + 139 - - - - $PROJ_DIR$\..\Object\LMS_ARM.pbd + - 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$\SrcIAR\Cstartup.s79 - - - AARM - 220 + BICOMP + 79 249 264 207 5 - - - AARM - 171 + ICCARM + 79 249 264 207 5 - $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\..\Source\c_cmd.c - XLINK - 164 197 + BICOMP + 96 + + + ICCARM + 107 - 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 + BICOMP + 79 249 73 259 209 78 252 227 207 37 225 216 230 241 57 3 240 248 266 75 67 42 6 12 72 13 233 104 102 80 69 + + + ICCARM + 79 249 73 259 209 78 252 227 207 37 225 216 230 241 57 3 240 248 266 75 67 55 42 6 12 72 13 233 104 102 80 69 - $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\..\Source\c_comm.c + + BICOMP + 136 + ICCARM - 150 + 132 + + BICOMP + 79 249 225 78 10 252 73 37 261 269 74 221 13 75 67 42 6 12 72 235 257 218 220 233 253 71 8 208 242 + ICCARM - 58 85 92 132 115 + 79 249 225 78 10 252 73 37 261 269 74 221 13 75 67 55 42 6 12 72 235 257 218 220 233 253 71 8 208 242 - $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\d_timer.c + + BICOMP + 87 + ICCARM - 131 + 129 + + BICOMP + 79 230 241 57 248 247 + ICCARM - 58 272 228 78 115 143 + 79 230 241 57 248 247 - $PROJ_DIR$\..\..\Source\c_net.c + $PROJ_DIR$\..\..\Source\c_display.c + + BICOMP + 143 + ICCARM - 183 + 105 + + BICOMP + 13 75 67 42 6 12 72 79 249 37 49 214 + ICCARM - 58 176 192 + 13 75 67 55 42 6 12 72 79 249 37 49 214 - $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\c_input.c + + BICOMP + 137 + ICCARM - 167 + 141 + + BICOMP + 79 249 246 209 244 259 78 13 75 67 42 6 12 72 + ICCARM - 58 272 228 219 212 186 + 79 249 246 209 244 259 78 13 75 67 55 42 6 12 72 - $PROJ_DIR$\..\..\Source\c_usb.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c + + BICOMP + 130 + ICCARM - 173 + 140 + + BICOMP + 79 249 10 48 224 + ICCARM - 58 85 194 190 269 + 79 249 10 48 224 - $PROJ_DIR$\..\..\Source\d_net.c + $PROJ_DIR$\..\..\Source\c_loader.c + + BICOMP + 121 + ICCARM - 168 + 111 + + BICOMP + 79 249 78 10 210 212 13 75 67 42 6 12 72 + ICCARM - 58 272 228 219 192 188 + 79 249 78 10 210 212 13 75 67 55 42 6 12 72 - $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c + + BICOMP + 103 + ICCARM - 196 + 82 + + BICOMP + 79 249 216 209 239 60 + ICCARM - 58 272 228 219 210 211 + 79 249 216 209 239 60 - $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_output.c + + BICOMP + 149 + ICCARM - 222 + 144 + + BICOMP + 266 75 67 42 6 12 72 61 79 249 259 256 39 37 + ICCARM - 58 85 213 203 212 + 266 75 67 55 42 6 12 72 61 79 249 259 256 39 37 - $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\c_sound.c + + BICOMP + 110 + ICCARM - 170 + 145 + + BICOMP + 233 75 67 42 6 12 72 13 79 249 227 78 226 44 + ICCARM - 58 85 191 217 210 + 233 75 67 55 42 6 12 72 13 79 249 227 78 226 44 - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_ui.c + + BICOMP + 152 + ICCARM - 199 + 153 + + BICOMP + 266 75 67 42 6 12 72 13 235 257 218 220 233 253 71 8 208 242 79 249 252 211 230 241 57 37 78 207 227 209 259 10 73 225 216 262 254 65 263 265 255 63 251 56 231 59 77 2 9 219 228 234 232 92 236 213 237 217 0 267 222 270 + ICCARM - 216 174 206 + 266 75 67 55 42 6 12 72 13 235 257 218 220 233 253 71 8 208 242 79 249 252 211 230 241 57 37 78 207 227 209 259 10 73 225 216 262 254 65 45 263 265 255 63 251 56 231 59 41 271 215 54 53 47 258 58 64 250 43 51 38 238 223 70 77 2 9 219 228 234 232 92 236 213 237 217 0 267 222 270 - $PROJ_DIR$\..\..\Source\c_avrcomm.c + $PROJ_DIR$\..\Include\Cstartup.s79 - ICCARM - 202 + AARM + 151 - ICCARM - 58 198 175 + AARM + 243 - $PROJ_DIR$\..\..\Source\d_avrcomm.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + + BICOMP + 134 + ICCARM - 187 + 88 + + BICOMP + 46 + ICCARM - 58 272 228 219 175 189 + 46 - $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\Source\d_bt.c + + BICOMP + 147 + ICCARM - 221 + 89 + + BICOMP + 79 249 230 241 57 221 50 13 75 67 42 6 12 72 + ICCARM - 169 218 215 + 79 249 230 241 57 221 50 13 75 67 55 42 6 12 72 - $PROJ_DIR$\..\..\Source\c_hispeed.c + $PROJ_DIR$\..\..\Source\d_button.c + + BICOMP + 99 + ICCARM - 177 + 154 + + BICOMP + 79 230 241 57 5 66 + ICCARM - 58 85 208 201 52 + 79 230 241 57 5 66 - $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\d_display.c + + BICOMP + 85 + ICCARM - 207 + 83 + + BICOMP + 79 230 241 57 214 62 + ICCARM - 216 174 206 + 79 230 241 57 214 62 @@ -2559,22 +2654,22 @@ $PROJ_DIR$\..\..\Source\d_hispeed.c - ICCARM - 133 + BICOMP + 97 - BICOMP - 110 + ICCARM + 81 - ICCARM - 58 272 228 78 52 57 + BICOMP + 79 230 241 57 74 11 - BICOMP - 58 272 228 78 52 57 + ICCARM + 79 230 241 57 74 11 @@ -2582,22 +2677,22 @@ $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 160 + BICOMP + 91 - BICOMP - 151 + ICCARM + 94 - ICCARM - 58 272 228 78 270 20 226 271 + BICOMP + 79 230 241 57 246 209 244 268 - BICOMP - 58 272 228 78 270 20 226 271 + ICCARM + 79 230 241 57 246 209 244 268 @@ -2605,22 +2700,22 @@ $PROJ_DIR$\..\..\Source\d_ioctrl.c - ICCARM - 119 + BICOMP + 142 - BICOMP - 100 + ICCARM + 127 - ICCARM - 61 50 12 35 83 223 10 62 58 272 228 78 152 87 + BICOMP + 13 75 67 42 6 12 72 79 230 241 57 224 52 - BICOMP - 61 50 12 83 223 10 62 58 272 228 78 152 87 + ICCARM + 13 75 67 55 42 6 12 72 79 230 241 57 224 52 @@ -2628,22 +2723,22 @@ $PROJ_DIR$\..\..\Source\d_loader.c - ICCARM - 95 + BICOMP + 146 - BICOMP - 104 + ICCARM + 138 - 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 + BICOMP + 79 249 230 241 57 210 260 13 75 67 42 6 12 72 235 257 218 220 233 253 71 8 208 242 - 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 + ICCARM + 79 249 230 241 57 210 260 13 75 67 55 42 6 12 72 235 257 218 220 233 253 71 8 208 242 @@ -2651,451 +2746,356 @@ $PROJ_DIR$\..\..\Source\d_lowspeed.c - ICCARM - 90 + BICOMP + 123 - BICOMP - 107 + ICCARM + 86 - ICCARM - 58 272 228 78 79 16 + BICOMP + 79 230 241 57 60 272 - BICOMP - 58 272 228 78 79 16 + ICCARM + 79 230 241 57 60 272 $PROJ_DIR$\..\..\Source\d_output.c + + BICOMP + 122 + ICCARM - 155 + 109 + + BICOMP - 96 + 79 230 241 57 39 229 + + + ICCARM + 79 230 241 57 39 229 + + + + + $PROJ_DIR$\..\..\Source\d_sound.c + + + BICOMP + 108 + + + ICCARM + 131 + + BICOMP + 79 230 241 57 44 68 106 + ICCARM - 58 272 228 78 84 73 + 79 230 241 57 44 68 106 + + + + [ROOT_NODE] + - BICOMP - 58 272 228 78 84 73 + XLINK + 119 124 169 - + - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_led.c ICCARM - 112 - - - BICOMP - 154 + 84 ICCARM - 58 272 228 78 49 47 141 - - - BICOMP - 58 272 228 78 49 47 141 + 79 230 241 57 93 148 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_motor.c ICCARM - 116 - - - BICOMP - 122 + 159 ICCARM - 58 272 228 78 24 70 - - - BICOMP - 58 272 228 78 24 70 + 79 230 241 171 194 195 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_net.c ICCARM - 125 - - - BICOMP - 161 + 160 ICCARM - 58 272 228 78 269 6 - - - BICOMP - 58 272 228 78 269 6 + 79 230 241 171 180 176 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_motor.c ICCARM - 158 - - - BICOMP - 120 + 162 ICCARM - 58 85 272 228 78 54 30 270 20 33 91 8 267 71 233 2 224 227 51 59 144 - - - BICOMP - 58 85 272 228 78 54 30 270 20 33 91 8 267 71 233 2 224 227 51 59 144 + 79 249 179 173 194 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\Object\LMS_ARM.d79 - ICCARM - 130 - - - BICOMP - 135 + XLINK + 124 169 - 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 + XLINK + 100 151 88 139 107 132 105 141 140 111 82 144 145 153 89 154 83 81 94 127 138 86 109 131 129 150 98 133 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\c_led.c ICCARM - 99 - - - BICOMP - 165 + 90 ICCARM - 58 85 270 20 226 44 42 61 50 12 35 83 223 10 62 + 79 249 101 125 93 + + + + $PROJ_DIR$\..\Object\LMS_ARM.pbd + - BICOMP - 58 85 270 20 226 44 42 61 50 12 83 223 10 62 + BILINK + 134 120 96 136 143 137 130 121 103 149 110 152 147 99 85 97 91 142 146 123 122 108 87 95 128 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\c_net.c ICCARM - 98 - - - BICOMP - 118 + 117 ICCARM - 58 85 18 59 152 - - - BICOMP - 58 85 18 59 152 + 79 174 180 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c ICCARM - 105 - - - BICOMP - 97 + 185 ICCARM - 58 85 42 18 0 8 61 50 12 35 83 223 10 62 - - - BICOMP - 58 85 42 18 0 8 61 50 12 83 223 10 62 + 193 166 191 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\c_hispeed.c ICCARM - 134 - - - BICOMP - 162 + 204 ICCARM - 58 85 77 20 233 79 - - - BICOMP - 58 85 77 20 233 79 + 79 249 116 115 74 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\SrcIAR\Cstartup.s79 - ICCARM - 102 - - - BICOMP - 124 + AARM + 190 - ICCARM - 37 50 12 35 83 223 10 62 80 58 85 44 2 84 28 - - - BICOMP - 37 50 12 83 223 10 62 80 58 85 44 2 84 28 + AARM + 163 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\c_sensor.c ICCARM - 103 - - - BICOMP - 139 + 203 ICCARM - 69 50 12 35 83 223 10 62 61 58 85 27 42 267 49 - - - BICOMP - 69 50 12 83 223 10 62 61 58 85 27 42 267 49 + 79 249 198 200 197 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\main.c ICCARM - 128 - - - BICOMP - 127 + 202 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 - - - 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 + 161 184 187 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\d_avrcomm.c - AARM - 126 + ICCARM + 175 - AARM - 229 + ICCARM + 79 230 241 171 114 177 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_bt.c ICCARM - 136 - - - BICOMP - 101 + 164 ICCARM - 72 - - - BICOMP - 72 + 79 249 205 181 221 73 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\c_avrcomm.c ICCARM - 149 - - - BICOMP - 140 + 155 ICCARM - 58 85 272 228 78 22 82 61 50 12 35 83 223 10 62 - - - BICOMP - 58 85 272 228 78 22 82 61 50 12 83 223 10 62 + 79 189 114 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_sensor.c ICCARM - 129 - - - BICOMP - 159 + 206 ICCARM - 58 272 228 78 153 43 - - - BICOMP - 58 272 228 78 153 43 + 79 230 241 171 197 157 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\src\main.c ICCARM - 146 - - - BICOMP - 147 + 188 ICCARM - 58 272 228 78 65 88 - - - BICOMP - 58 272 228 78 65 88 + 193 166 191 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\c_usb.c ICCARM - 163 - - - BICOMP - 111 + 165 ICCARM - 58 85 33 91 153 - - - BICOMP - 58 85 33 91 153 + 79 249 182 178 269 @@ -3103,163 +3103,125 @@ RAM_Debug - $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\Functions.inl + $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_button.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\c_button.c + $TOOLKIT_DIR$\inc\xtinfo.h + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\..\..\Source\d_hispeed.r + $TOOLKIT_DIR$\inc\DLib_Threads.h + $TOOLKIT_DIR$\inc\string.h $PROJ_DIR$\..\..\Source\c_cmd.c - $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\d_timer.c + $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\d_sound.c $PROJ_DIR$\..\..\Source\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$\..\..\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$\..\..\Source\d_output.h $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 + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\c_display.h + $PROJ_DIR$\..\..\Source\d_bt.r + $PROJ_DIR$\..\..\Source\RCXintro_12.txt + $PROJ_DIR$\..\..\Source\d_ioctrl.r + $PROJ_DIR$\..\..\Source\RCXintro_5.txt $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\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\Icons.txt $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 - $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 + $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\Font.txt + $PROJ_DIR$\..\..\Source\d_button.r + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\c_cmd.iom + $PROJ_DIR$\..\..\Source\d_hispeed.h + $TOOLKIT_DIR$\inc\yvals.h + $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\stdconst.h $TOOLKIT_DIR$\inc\limits.h - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $PROJ_DIR$\..\..\Source\d_button.h + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\..\..\Source\d_led.h + $PROJ_DIR$\..\..\Source\c_led.iom $TOOLKIT_DIR$\inc\ymath.h - $PROJ_DIR$\..\..\Source\d_sensor.c + $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r $PROJ_DIR$\..\..\Source\d_motor.c - $PROJ_DIR$\..\..\Source\c_sensor.c $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\..\Source\d_led.r $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$\SrcIAR\Cstartup.s79 + $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\Include\ioat91sam7s64.h $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\Source\c_motor.h + $PROJ_DIR$\..\..\Source\c_motor.iom $PROJ_DIR$\..\..\Source\d_motor.h $PROJ_DIR$\..\..\Source\d_motor.r + $PROJ_DIR$\..\..\Source\d_sensor.c $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$\..\..\Source\c_sensor.h $PROJ_DIR$\RAM_Debug\Obj\c_display.r79 - $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\c_ioctrl.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_loader.pbi $PROJ_DIR$\RAM_Debug\Obj\d_sound.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_comm.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\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 - $PROJ_DIR$\RAM_Debug\Obj\d_sensor.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_display.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_usb.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_output.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_cmd.r79 $PROJ_DIR$\RAM_Debug\Obj\c_cmd.pbi $PROJ_DIR$\RAM_Debug\Obj\d_lowspeed.pbi $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.r79 @@ -3267,817 +3229,855 @@ $PROJ_DIR$\RAM_Debug\Obj\sam7s256.r79 $PROJ_DIR$\RAM_Debug\Obj\c_input.pbi $TOOLKIT_DIR$\lib\dl4tptinl8n.h - $PROJ_DIR$\RAM_Debug\Obj\d_input.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_led.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$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\RAM_Debug\Obj\Cstartup.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\c_sound.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_bt.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.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\main.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_usb.r79 + $PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_usb.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_input.pbi $PROJ_DIR$\RAM_Debug\Obj\d_bt.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_sound.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_cmd.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.r79 $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$\..\Include\sam7s256.h - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\c_ui.iom + $PROJ_DIR$\..\..\Source\c_button.iom + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $TOOLKIT_DIR$\inc\xtls.h + $PROJ_DIR$\..\..\Source\Ui.txt + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Submenu02.rms + $TOOLKIT_DIR$\inc\stdlib.h $PROJ_DIR$\..\..\Source\Submenu01.rms + $TOOLKIT_DIR$\inc\ctype.h $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\RCXintro_14.txt $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.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 - $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\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$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_usb.r $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\c_ui.iom + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\d_loader.r + $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\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\BtTest.inc $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\RAM_Debug\Obj\c_sound.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_output.r79 + $PROJ_DIR$\RAM_Debug\Obj\m_sched.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_led.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_sound.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_timer.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_button.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_ui.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_loader.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_input.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\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 + $PROJ_DIR$\RAM_Debug\Obj\d_sensor.r79 - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\m_sched.c - XLINK - 142 + BICOMP + 228 - - - - $PROJ_DIR$\..\..\Source\c_cmd.c - ICCARM - 185 - - - BICOMP - 157 + 215 - ICCARM - 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 + 78 189 170 181 56 40 201 186 149 204 147 152 166 49 179 196 3 180 72 48 151 - 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 + ICCARM + 78 189 170 181 56 40 201 186 149 204 147 152 166 49 179 196 3 180 72 48 151 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_usb.c - - ICCARM - 135 - BICOMP - 141 + 142 - - 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 + 116 + + BICOMP - 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 + 78 170 181 56 209 185 - - - - $PROJ_DIR$\..\Include\sam7s256.c - ICCARM - 161 + 78 170 181 56 209 185 - + - $PROJ_DIR$\SrcIAR\Cstartup.s79 + $PROJ_DIR$\..\..\Source\c_button.c - AARM - 175 + BICOMP + 225 - - - - $PROJ_DIR$\..\..\Source\c_led.c - ICCARM - 143 + 220 + + BICOMP + 78 189 204 147 5 + ICCARM - 57 84 90 96 93 + 78 189 204 147 5 - $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\c_cmd.c + + BICOMP + 119 + ICCARM - 129 + 118 + + BICOMP + 78 189 72 199 149 77 192 167 147 37 165 156 170 181 56 3 180 188 206 74 66 42 6 12 71 13 173 84 83 79 68 + ICCARM - 57 233 189 121 93 99 + 78 189 72 199 149 77 192 167 147 37 165 156 170 181 56 3 180 188 206 74 66 125 42 6 12 71 13 173 84 83 79 68 - $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\c_comm.c + + BICOMP + 113 + ICCARM - 156 + 111 + + BICOMP + 78 189 165 77 10 192 72 37 201 209 73 161 13 74 66 42 6 12 71 175 197 158 160 173 193 70 8 148 182 + ICCARM - 57 233 189 121 117 110 + 78 189 165 77 10 192 72 37 201 209 73 161 13 74 66 125 42 6 12 71 175 197 158 160 173 193 70 8 148 182 - $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\d_timer.c + + BICOMP + 137 + ICCARM - 177 + 219 + + BICOMP + 78 170 181 56 188 187 + ICCARM - 57 233 189 121 115 116 + 78 170 181 56 188 187 - $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_display.c + + BICOMP + 227 + ICCARM - 173 + 106 + + BICOMP + 13 74 66 42 6 12 71 78 189 37 49 154 + ICCARM - 57 84 118 113 117 + 13 74 66 125 42 6 12 71 78 189 37 49 154 - $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\c_input.c + + BICOMP + 124 + ICCARM - 172 + 226 + + BICOMP + 78 189 186 149 184 199 77 13 74 66 42 6 12 71 + ICCARM - 57 84 111 120 115 + 78 189 186 149 184 199 77 13 74 66 125 42 6 12 71 - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c + + BICOMP + 229 + ICCARM - 131 + 108 - - - $PROJ_DIR$\..\..\Source\main.c - + + + BICOMP + 78 189 10 48 164 + ICCARM - 181 + 78 189 10 48 164 - + - $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\c_loader.c + + BICOMP + 109 + ICCARM - 181 + 224 - - - $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd - 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 + BICOMP + 78 189 77 10 150 152 13 74 66 42 6 12 71 + + + ICCARM + 78 189 77 10 150 152 13 74 66 125 42 6 12 71 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c - ICCARM - 168 + BICOMP + 122 - BICOMP - 171 + ICCARM + 121 - ICCARM - 57 233 189 77 51 56 + BICOMP + 78 189 156 149 179 59 - BICOMP - 57 233 189 77 51 56 + ICCARM + 78 189 156 149 179 59 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\c_output.c - ICCARM - 164 + BICOMP + 107 - BICOMP - 176 + ICCARM + 214 - ICCARM - 57 233 189 77 231 20 169 232 + BICOMP + 206 74 66 42 6 12 71 60 78 189 199 196 39 37 - BICOMP - 57 233 189 77 231 20 169 232 + ICCARM + 206 74 66 125 42 6 12 71 60 78 189 199 196 39 37 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\c_sound.c - ICCARM - 166 + BICOMP + 213 - BICOMP - 144 + ICCARM + 133 - ICCARM - 60 49 12 163 82 123 10 61 57 233 189 77 103 86 + BICOMP + 173 74 66 42 6 12 71 13 78 189 167 77 166 44 - BICOMP - 60 49 12 82 123 10 61 57 233 189 77 103 86 + ICCARM + 173 74 66 125 42 6 12 71 13 78 189 167 77 166 44 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_ui.c - ICCARM - 146 + BICOMP + 128 - BICOMP - 179 + ICCARM + 221 - 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 + BICOMP + 206 74 66 42 6 12 71 13 175 197 158 160 173 193 70 8 148 182 78 189 192 151 170 181 56 37 77 147 167 149 199 10 72 165 156 202 194 64 45 203 205 195 62 191 55 171 58 41 211 155 54 53 47 198 57 63 190 43 51 38 178 163 69 76 2 9 159 168 174 172 80 176 153 177 157 0 207 162 210 - 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 + ICCARM + 206 74 66 125 42 6 12 71 13 175 197 158 160 173 193 70 8 148 182 78 189 192 151 170 181 56 37 77 147 167 149 199 10 72 165 156 202 194 64 45 203 205 195 62 191 55 171 58 41 211 155 54 53 47 198 57 63 190 43 51 38 178 163 69 76 2 9 159 168 174 172 80 176 153 177 157 0 207 162 210 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\Include\Cstartup.s79 - ICCARM - 165 - - - BICOMP - 158 + AARM + 129 - ICCARM - 57 233 189 77 78 16 - - - BICOMP - 57 233 189 77 78 16 + AARM + 183 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - ICCARM - 180 + BICOMP + 230 - BICOMP - 138 + ICCARM + 141 - ICCARM - 57 233 189 77 83 72 + BICOMP + 46 - BICOMP - 57 233 189 77 83 72 + ICCARM + 46 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_bt.c - ICCARM - 139 + BICOMP + 144 - BICOMP - 145 + ICCARM + 134 - ICCARM - 57 233 189 77 48 46 98 + BICOMP + 78 189 170 181 56 161 50 13 74 66 42 6 12 71 - BICOMP - 57 233 189 77 48 46 98 + ICCARM + 78 189 170 181 56 161 50 13 74 66 125 42 6 12 71 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_button.c - ICCARM - 125 + BICOMP + 112 - BICOMP - 178 + ICCARM + 232 - ICCARM - 57 233 189 77 24 69 + BICOMP + 78 170 181 56 5 65 - BICOMP - 57 233 189 77 24 69 + ICCARM + 78 170 181 56 5 65 - $PROJ_DIR$\..\..\Source\d_usb.c + $PROJ_DIR$\..\..\Source\d_display.c - ICCARM - 182 + BICOMP + 115 - BICOMP - 132 + ICCARM + 146 - ICCARM - 57 233 189 77 230 6 + BICOMP + 78 170 181 56 154 61 - BICOMP - 57 233 189 77 230 6 + ICCARM + 78 170 181 56 154 61 - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - ICCARM - 128 + BICOMP + 130 - BICOMP - 151 + ICCARM + 145 - ICCARM - 57 84 233 189 77 53 30 231 20 33 89 8 228 70 194 2 124 170 50 58 100 + BICOMP + 78 170 181 56 73 11 - BICOMP - 57 84 233 189 77 53 30 231 20 33 89 8 228 70 194 2 124 170 50 58 100 + ICCARM + 78 170 181 56 73 11 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_input.c - ICCARM - 127 + BICOMP + 143 - BICOMP - 150 + ICCARM + 223 - ICCARM - 60 49 12 163 82 123 10 61 57 84 28 70 64 + BICOMP + 78 170 181 56 186 149 184 208 - BICOMP - 60 49 12 82 123 10 61 57 84 28 70 64 + ICCARM + 78 170 181 56 186 149 184 208 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - ICCARM - 149 + BICOMP + 135 - BICOMP - 162 + ICCARM + 216 - ICCARM - 57 84 231 20 169 43 41 60 49 12 163 82 123 10 61 + BICOMP + 13 74 66 42 6 12 71 78 170 181 56 164 52 - BICOMP - 57 84 231 20 169 43 41 60 49 12 82 123 10 61 + ICCARM + 13 74 66 125 42 6 12 71 78 170 181 56 164 52 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_loader.c - ICCARM - 174 + BICOMP + 138 - BICOMP - 152 + ICCARM + 222 - ICCARM - 57 84 18 58 103 + BICOMP + 78 189 170 181 56 150 200 13 74 66 42 6 12 71 175 197 158 160 173 193 70 8 148 182 - BICOMP - 57 84 18 58 103 + ICCARM + 78 189 170 181 56 150 200 13 74 66 125 42 6 12 71 175 197 158 160 173 193 70 8 148 182 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - ICCARM - 147 + BICOMP + 120 - BICOMP - 134 + ICCARM + 127 - ICCARM - 57 84 41 18 0 8 60 49 12 163 82 123 10 61 + BICOMP + 78 170 181 56 59 212 - BICOMP - 57 84 41 18 0 8 60 49 12 82 123 10 61 + ICCARM + 78 170 181 56 59 212 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_output.c - ICCARM - 159 + BICOMP + 117 - BICOMP - 160 + ICCARM + 139 - ICCARM - 57 84 76 20 194 78 + BICOMP + 78 170 181 56 39 169 - BICOMP - 57 84 76 20 194 78 + ICCARM + 78 170 181 56 39 169 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_sound.c - ICCARM - 122 + BICOMP + 218 - BICOMP - 137 + ICCARM + 110 - ICCARM - 36 49 12 163 82 123 10 61 79 57 84 43 2 83 28 + BICOMP + 78 170 181 56 44 67 85 - BICOMP - 36 49 12 82 123 10 61 79 57 84 43 2 83 28 + ICCARM + 78 170 181 56 44 67 85 - $PROJ_DIR$\..\..\Source\c_sound.c + [ROOT_NODE] - ICCARM - 184 - - - BICOMP - 188 + XLINK + 114 - + + + $PROJ_DIR$\..\Include\sam7s256.c + ICCARM - 68 49 12 163 82 123 10 61 60 57 84 27 41 228 48 + 123 - - BICOMP - 68 49 12 82 123 10 61 60 57 84 27 41 228 48 - - + - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\d_led.c ICCARM - 130 - - - BICOMP - 167 + 217 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 - - - 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 + 78 170 181 95 81 90 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\d_motor.c - AARM - 175 + ICCARM + 136 - AARM - 190 + ICCARM + 78 170 181 95 99 100 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_motor.c ICCARM 131 - - BICOMP - 153 - ICCARM - 71 - - - BICOMP - 71 + 78 189 98 97 99 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\c_led.c ICCARM - 187 - - - BICOMP - 183 + 126 ICCARM - 57 84 233 189 77 22 81 60 49 12 163 82 123 10 61 - - - BICOMP - 57 84 233 189 77 22 81 60 49 12 82 123 10 61 + 78 189 82 88 81 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c ICCARM - 155 + 141 + + + + $PROJ_DIR$\SrcIAR\Cstartup.s79 + - BICOMP - 140 + AARM + 129 - + + + $PROJ_DIR$\..\..\Source\c_sensor.c + ICCARM - 57 233 189 77 104 42 + 132 + + - BICOMP - 57 233 189 77 104 42 + ICCARM + 78 189 103 105 102 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\main.c ICCARM - 186 + 140 + + + + $PROJ_DIR$\..\..\Source\d_sensor.c + - BICOMP - 136 + ICCARM + 233 ICCARM - 57 233 189 77 64 87 - - - BICOMP - 57 233 189 77 64 87 + 78 170 181 95 102 91 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\src\main.c ICCARM - 133 - - - BICOMP - 148 + 140 + + + $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd - ICCARM - 57 84 33 89 104 - - - BICOMP - 57 84 33 89 104 + BILINK + 230 225 119 113 227 124 229 109 122 107 213 128 144 112 115 130 143 135 138 120 117 218 137 142 228 diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp index c90d273..7d7825a 100644 --- a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp @@ -1789,6 +1789,9 @@ CCDefines PROTOTYPE_PCB_4 NEW_MENU + INCLUDE_OBP + INCLUDE_INTRO + INCLUDE_DATALOG diff --git a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.dni b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.dni index 883e131..562a6be 100644 --- a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.dni +++ b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.dni @@ -18,13 +18,13 @@ LimitSize=0 ByteLimit=50 [Profiling] Enabled=0 -[TermIOLog] -LoggingEnabled=_ 0 -LogFile=_ "" [Log file] LoggingEnabled=_ 0 LogFile=_ "" Category=_ 0 +[TermIOLog] +LoggingEnabled=_ 0 +LogFile=_ "" [Disassemble mode] mode=0 [Breakpoints] diff --git a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt index 7759d5d..2657fbb 100644 --- a/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt +++ b/AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt @@ -11,7 +11,7 @@ - 1733271307876 + 1233271307876 300Find-in-FilesDebug-Log1862724461 @@ -32,7 +32,7 @@ - + TabID-32446-5425 @@ -44,20 +44,20 @@ - 0TabID-27191-10055BuildBuildTabID-29560-16542Find in FilesFind-in-Files0 + 0TabID-27191-10055BuildBuildTabID-29560-16542Find in FilesFind-in-FilesTabID-7715-30991BreakpointsBreakpointsTabID-19698-32199Debug LogDebug-Log0 - 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 + TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_cmd.c09569270796270796TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_cmd.iom013455035503TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_comm.c0000TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\c_comm.iom025500TextEditorD:\NXT\lms_nbcnxc_131\AT91SAM7S256\Source\d_output.c01776984698440100000010000001 - iaridepm.enu1-2-2601223-2-20000157123716152-2-21971434-2-214361991002793236342139665236342 + iaridepm.enu1-2-2463190-2-20000157119701357-2-21551224-2-212261571003273236802139935236802 diff --git a/AT91SAM7S256/Source/Functions.inl b/AT91SAM7S256/Source/Functions.inl index d12ebc0..3b9410b 100644 --- a/AT91SAM7S256/Source/Functions.inl +++ b/AT91SAM7S256/Source/Functions.inl @@ -19,11 +19,15 @@ //******* cUiBtTest ********************************************************** const UBYTE NONVOLATILE_NAME[] = UI_NONVOLATILE; // Non volatile filename without extention +#ifdef INCLUDE_OBP const UBYTE DEFAULT_PROGRAM_NAME[] = UI_PROGRAM_DEFAULT; // On brick programming filename without extention const UBYTE TEMP_PROGRAM_FILENAME[] = UI_PROGRAM_TEMP; // On brick programming tmp filename without extention const UBYTE VM_PROGRAM_READER[] = UI_PROGRAM_READER; // On brick programming script reader filename without extention +#endif +#ifdef INCLUDE_DATALOG const UBYTE TEMP_DATALOG_FILENAME[] = UI_DATALOG_TEMP; // On brick datalog tmp filename without extention const UBYTE DEFAULT_DATALOG_NAME[] = UI_DATALOG_DEFAULT; // On brick datalog filename without extention +#endif const UBYTE DEFAULT_PIN_CODE[] = UI_PINCODE_DEFAULT; // Default blue tooth pin code const UBYTE TXT_INVALID_SENSOR[] = "??????????????"; // Display invalid sensor data @@ -226,6 +230,8 @@ UBYTE cUiReadLowspeed(UBYTE Port,UBYTE RxBytes,UWORD *Value) void cUiUpdateSensor(SWORD Time) { +#ifdef INCLUDE_DATALOG + UBYTE Port; UBYTE Sensor; UBYTE Result; @@ -368,6 +374,7 @@ void cUiUpdateSensor(SWORD Time) VarsUi.SensorReset = FALSE; } +#endif } @@ -422,6 +429,7 @@ const UBYTE COLORNAME[COLORNAMES][10] = void cUiPrintSensorInDisplayBuffer(UBYTE Port) { +#ifdef INCLUDE_DATALOG UBYTE Sensor; float Value; SWORD Size; @@ -451,6 +459,7 @@ void cUiPrintSensorInDisplayBuffer(UBYTE Port) } } } +#endif } @@ -1127,12 +1136,14 @@ UBYTE cUiVolume(UBYTE Action) // MENU_INIT,MENU_LEFT,MENU_RIGHT,MENU_EXIT { VarsUi.Counter = VarsUi.NVData.VolumeStep + 1; +#ifdef INCLUDE_OBP VarsUi.pTmp = (UBYTE*)Cursor; for (VarsUi.Tmp = 0;(VarsUi.Tmp < SIZE_OF_CURSOR) && (VarsUi.Tmp < (UBYTE)sizeof(Cursor));VarsUi.Tmp++) { VarsUi.CursorTmp[VarsUi.Tmp] = *VarsUi.pTmp; VarsUi.pTmp++; } +#endif Action = MENU_DRAW; } break; @@ -1175,9 +1186,11 @@ UBYTE cUiVolume(UBYTE Action) // MENU_INIT,MENU_LEFT,MENU_RIGHT,MENU_EXIT sprintf((char*)VarsUi.DisplayBuffer,"%u",(UWORD)VarsUi.Counter - 1); pMapDisplay->pTextLines[TEXTLINE_3] = VarsUi.DisplayBuffer; +#ifdef INCLUDE_OBP pMapDisplay->pBitmaps[BITMAP_1] = (BMPMAP*)VarsUi.CursorTmp; VarsUi.CursorTmp[4] = 46; VarsUi.CursorTmp[5] = 24; +#endif pMapDisplay->EraseMask |= (TEXTLINE_BIT(TEXTLINE_3) | TEXTLINE_BIT(TEXTLINE_4)); pMapDisplay->TextLinesCenterFlags |= TEXTLINE_BIT(TEXTLINE_3); pMapDisplay->UpdateMask |= (TEXTLINE_BIT(TEXTLINE_3) | BITMAP_BIT(BITMAP_1)); @@ -1475,6 +1488,7 @@ void cUiDrawPortNo(UBYTE *Bitmap,UBYTE MenuIconNo,UBYTE PortNo) UBYTE cUiDataLogging(UBYTE Action) { +#ifdef INCLUDE_DATALOGGING SBYTE TmpBuffer[DATALOGBUFFERSIZE + 1]; switch (Action) @@ -2006,7 +2020,7 @@ UBYTE cUiDataLogging(UBYTE Action) break; } - +#endif return (VarsUi.State); } @@ -2067,6 +2081,7 @@ void cUiRunning(UBYTE Action) UBYTE cUiOnBrickProgramming(UBYTE Action) // On brick programming { +#ifdef INCLUDE_OBP switch (Action) { case MENU_INIT : // Show motor / sensor text @@ -2454,6 +2469,7 @@ UBYTE cUiOnBrickProgramming(UBYTE Action) // On brick programming pMapDisplay->UpdateMask |= (SPECIAL_BIT(STEPLINE) | SPECIAL_BIT(TOPLINE)); } +#endif return (VarsUi.State); } @@ -2676,7 +2692,7 @@ UBYTE cUiFileRun(UBYTE Action) // Run selected file } } break; - +#ifdef INCLUDE_OBP case (FILETYPE_NXT * 10 + 0) :// Start Program file (*.prg) { VarsUi.TmpHandle = pMapLoader->pFunc(OPENREAD,VarsUi.SelectedFilename,NULL,&VarsUi.TmpLength); @@ -2740,7 +2756,7 @@ UBYTE cUiFileRun(UBYTE Action) // Run selected file } } break; - +#endif case 99 : // Wait for display show time or user action { pMapDisplay->EraseMask = SCREEN_BIT(SCREEN_LARGE); @@ -2845,11 +2861,13 @@ UBYTE cUiView(UBYTE Action) // MENU_INIT pMapDisplay->TextLinesCenterFlags |= TEXTLINE_BIT(TEXTLINE_3); pMapDisplay->UpdateMask |= TEXTLINE_BIT(TEXTLINE_3); pMapDisplay->EraseMask |= SCREEN_BIT(SCREEN_SMALL); +#ifdef INCLUDE_DATALOG // Init ports for (VarsUi.Tmp = 0;VarsUi.Tmp < DATALOGPORTS;VarsUi.Tmp++) { VarsUi.DatalogPort[VarsUi.Tmp] = MENU_SENSOR_EMPTY; } +#endif } break; @@ -2862,8 +2880,9 @@ UBYTE cUiView(UBYTE Action) // MENU_INIT if ((Action >= MENU_PORT_1) && (Action <= MENU_PORT_C)) { VarsUi.SelectedPort = Action; - +#ifdef INCLUDE_DATALOG VarsUi.DatalogPort[VarsUi.SelectedPort - MENU_PORT_1] = VarsUi.SelectedSensor; +#endif IOMapUi.Flags |= UI_BUSY; pMapDisplay->EraseMask |= SCREEN_BIT(SCREEN_LARGE); @@ -3966,12 +3985,14 @@ UBYTE cUiPowerOffTime(UBYTE Action) // MENU_INIT,MENU_LEFT,MENU_RIGHT,MENU_E { VarsUi.Counter = VarsUi.NVData.PowerdownCode + 1; +#ifdef INCLUDE_OBP VarsUi.pTmp = (UBYTE*)Cursor; for (VarsUi.Tmp = 0;(VarsUi.Tmp < SIZE_OF_CURSOR) && (VarsUi.Tmp < (UBYTE)sizeof(Cursor));VarsUi.Tmp++) { VarsUi.CursorTmp[VarsUi.Tmp] = *VarsUi.pTmp; VarsUi.pTmp++; } +#endif Action = MENU_DRAW; } break; @@ -4013,9 +4034,11 @@ UBYTE cUiPowerOffTime(UBYTE Action) // MENU_INIT,MENU_LEFT,MENU_RIGHT,MENU_E } pMapDisplay->pTextLines[TEXTLINE_3] = VarsUi.DisplayBuffer; +#ifdef INCLUDE_OBP pMapDisplay->pBitmaps[BITMAP_1] = (BMPMAP*)VarsUi.CursorTmp; VarsUi.CursorTmp[4] = 46; VarsUi.CursorTmp[5] = 24; +#endif pMapDisplay->EraseMask |= (TEXTLINE_BIT(TEXTLINE_3) | TEXTLINE_BIT(TEXTLINE_4)); pMapDisplay->TextLinesCenterFlags |= TEXTLINE_BIT(TEXTLINE_3); pMapDisplay->UpdateMask |= (TEXTLINE_BIT(TEXTLINE_3) | BITMAP_BIT(BITMAP_1)); diff --git a/AT91SAM7S256/Source/c_cmd.c b/AT91SAM7S256/Source/c_cmd.c index 674960c..0e79d08 100644 --- a/AT91SAM7S256/Source/c_cmd.c +++ b/AT91SAM7S256/Source/c_cmd.c @@ -409,7 +409,12 @@ UBYTE cCmdBTGetDeviceType(UBYTE *pCOD) return (Result); } -UBYTE CMD_RESPONSE_LENGTH[255] = +void cCmdSetVMState(VM_STATE newState) +{ + VarsCmd.VMState = newState; +} + +UBYTE CMD_RESPONSE_LENGTH[256] = { 3, // DCStartProgram (x00) 3, // DCStopProgram (x01) @@ -500,7 +505,8 @@ UBYTE CMD_RESPONSE_LENGTH[255] = 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) + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // (xE0-xEF) + 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 @@ -1204,7 +1210,7 @@ UWORD cCmdHandleRemoteCommands(UBYTE * pInBuf, UBYTE * pOutBuf, UBYTE * pLen) // don't change the VM state if the state is currently idle or resetting if (VarsCmd.VMState > VM_IDLE && VarsCmd.VMState < VM_RESET1) { - VarsCmd.VMState = (VM_STATE)pInBuf[1]; + cCmdSetVMState((VM_STATE)pInBuf[1]); // setting the VM state turns on debugging VarsCmd.Debugging = TRUE; if (VarsCmd.VMState == VM_RESET1) @@ -1328,7 +1334,12 @@ UWORD cCmdHandleRemoteCommands(UBYTE * pInBuf, UBYTE * pOutBuf, UBYTE * pLen) //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); + memset((PSZ)VarsCmd.LastResponseBuffer, 0, 64); + UBYTE len = VarsCmd.LastResponseLength - 1; + if (*pLen < len) + len = *pLen; + if (VarsCmd.LastResponseLength > 1) + memcpy((PSZ)VarsCmd.LastResponseBuffer, (PSZ)(&pInBuf[0]), len); } break; }; @@ -1413,7 +1424,7 @@ void cCmdInit(void* pHeader) VarsCmd.DirtyComm = FALSE; VarsCmd.DirtyDisplay = FALSE; - VarsCmd.VMState = VM_IDLE; + cCmdSetVMState(VM_IDLE); #if defined (ARM_NXT) //Make sure Pool is long-aligned @@ -1480,7 +1491,7 @@ void cCmdCtrl(void) pMapButton->State[BTN1] &= ~(pMapUi->AbortFlag); //Go to VM_RESET1 state and report abort - VarsCmd.VMState = VM_RESET1; + cCmdSetVMState(VM_RESET1); IOMapCmd.ProgStatus = PROG_ABORT; break; } @@ -1505,13 +1516,13 @@ void cCmdCtrl(void) #endif // automatically switch from RUN_SINGLE to RUN_PAUSE after a single step if (VarsCmd.VMState == VM_RUN_SINGLE) - VarsCmd.VMState = VM_RUN_PAUSE; + cCmdSetVMState(VM_RUN_PAUSE); //If RunQ and RestQ are empty, program is done, or wacko if (!cCmdIsClumpIDSane(VarsCmd.RunQ.Head)) { Continue = FALSE; if(!cCmdIsClumpIDSane(VarsCmd.RestQ.Head)) { - VarsCmd.VMState = VM_RESET1; + cCmdSetVMState(VM_RESET1); IOMapCmd.ProgStatus = PROG_OK; } } @@ -1529,13 +1540,13 @@ void cCmdCtrl(void) else if (IS_ERR(Status)) // mem error is handled in InterpFromClump if possible { Continue = FALSE; - VarsCmd.VMState = VM_RESET1; + cCmdSetVMState(VM_RESET1); IOMapCmd.ProgStatus = Status; } else if (Status == STOP_REQ) { Continue = FALSE; - VarsCmd.VMState = VM_RESET1; + cCmdSetVMState(VM_RESET1); IOMapCmd.ProgStatus = PROG_OK; } else if (Status == BREAKOUT_REQ) @@ -1572,12 +1583,12 @@ void cCmdCtrl(void) if (IS_ERR(Status)) { IOMapCmd.ProgStatus = Status; - VarsCmd.VMState = VM_RESET1; + cCmdSetVMState(VM_RESET1); } //Else start running program else { - VarsCmd.VMState = VM_RUN_FREE; + cCmdSetVMState(VM_RUN_FREE); IOMapCmd.ProgStatus = PROG_RUNNING; VarsCmd.StartTick = IOMapCmd.Tick; @@ -1642,7 +1653,7 @@ void cCmdCtrl(void) //Artificially set CommStatReset to BTBUSY to force at least one SETCMDMODE call (see VM_RESET2 case) VarsCmd.CommStatReset = (SWORD)BTBUSY; - VarsCmd.VMState = VM_RESET2; + cCmdSetVMState(VM_RESET2); while (IOMapCmd.Tick == dTimerRead()); // delay until scheduled time } break; @@ -1668,7 +1679,7 @@ void cCmdCtrl(void) VarsCmd.DirtyComm = FALSE; //Go to VM_IDLE state - VarsCmd.VMState = VM_IDLE; + cCmdSetVMState(VM_IDLE); IOMapCmd.ProgStatus = PROG_IDLE; } while (IOMapCmd.Tick == dTimerRead()); // delay until scheduled time @@ -4581,7 +4592,7 @@ NXT_STATUS cCmdInterpFromClump() if (pBreakpoints[j].Enabled && (pBreakpoints[j].Location == (CODE_INDEX)(pClumpRec->PC-pClumpRec->CodeStart))) { - VarsCmd.VMState = VM_RUN_PAUSE; + cCmdSetVMState(VM_RUN_PAUSE); return BREAKOUT_REQ; } } @@ -4590,7 +4601,7 @@ NXT_STATUS cCmdInterpFromClump() ((CODE_INDEX)(pClumpRec->PC-pClumpRec->CodeStart) == VarsCmd.PausePC)) { // pause the VM - VarsCmd.VMState = VM_RUN_PAUSE; + cCmdSetVMState(VM_RUN_PAUSE); // and turn off the auto pause flags VarsCmd.PauseClump = NOT_A_CLUMP; VarsCmd.PausePC = 0xFFFF; diff --git a/AT91SAM7S256/Source/c_comm.c b/AT91SAM7S256/Source/c_comm.c index 1878108..5b5292d 100644 --- a/AT91SAM7S256/Source/c_comm.c +++ b/AT91SAM7S256/Source/c_comm.c @@ -440,6 +440,7 @@ UWORD cCommInterprete(UBYTE *pInBuf, UBYTE *pOutBuf, UBYTE *pLength, UBYTE C // 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); @@ -1532,11 +1533,14 @@ void cCommReceivedHiSpeedData(void) { // receiving hi-speed data in NXT mode /* Copy the bytes into the IOMapBuffer */ - memcpy((IOMapComm.HsInBuf.Buf), (VarsComm.HsModuleInBuf.Buf), NumberOfBytes); - + 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; @@ -1547,8 +1551,10 @@ void cCommReceivedHiSpeedData(void) /* if there is a reply to be sent then send it */ if (IOMapComm.HsOutBuf.InPtr) { - dHiSpeedSendData(IOMapComm.HsOutBuf.Buf, IOMapComm.HsOutBuf.InPtr); + cCommSendHiSpeedData(); +// dHiSpeedSendData(IOMapComm.HsOutBuf.Buf, IOMapComm.HsOutBuf.InPtr); IOMapComm.HsOutBuf.InPtr = 0; + IOMapComm.HsOutBuf.OutPtr = 0; } } } diff --git a/AT91SAM7S256/Source/c_ui.c b/AT91SAM7S256/Source/c_ui.c index b47813a..53c1f82 100644 --- a/AT91SAM7S256/Source/c_ui.c +++ b/AT91SAM7S256/Source/c_ui.c @@ -59,7 +59,9 @@ const HEADER cUi = #include "Display.txt" // Bitmap for frame used in view and datalog #include "LowBattery.txt" // Bitmap showed when low battery occures #include "Font.txt" // Font used for all text +#ifdef INCLUDE_OBP #include "Step.txt" // Bitmap used in On Brick Programming +#endif #include "Cursor.txt" // Bitmap for cursor #include "Running.txt" // Icon collection used for "running" symbol #include "Port.txt" // Font used for naming sensor ports in datalog/bluetooth @@ -69,6 +71,7 @@ const HEADER cUi = #include "Info.txt" // Bitmap for feedback #include "Icons.txt" // Icon collection used for menues +#ifdef INCLUDE_INTRO // ****** INTRO ANIMATION RESOURCES ****************************************** #include "RCXintro_1.txt" // Bitmap for picture 1 in the intro animation @@ -107,6 +110,7 @@ const BMPMAP *Intro[NO_OF_INTROBITMAPS] = // Picture sequence for the intro (BMPMAP*)RCXintro_15, (BMPMAP*)RCXintro_16 }; +#endif // ****** STATUS LINE GRAPHIC RESOURCES ************************************** @@ -1281,7 +1285,9 @@ void cUiCtrl(void) VarsUi.CRPasskey++; VarsUi.ButtonTimer++; +#ifdef INCLUDE_OBP VarsUi.OBPTimer++; +#endif switch (IOMapUi.State) { case INIT_DISPLAY : // Load font and icons @@ -1301,7 +1307,9 @@ void cUiCtrl(void) pMapDisplay->pFont = (FONT*)Font; pMapDisplay->pStatusIcons = (ICON*)Status; pMapDisplay->pStatusText = (UBYTE*)VarsUi.StatusText; +#ifdef INCLUDE_OBP pMapDisplay->pStepIcons = (ICON*)Step; +#endif VarsUi.State = 0; VarsUi.Pointer = 0; @@ -1320,7 +1328,9 @@ void cUiCtrl(void) IOMapUi.State = INIT_INTRO; pMapDisplay->EraseMask = SCREEN_BIT(SCREEN_BACKGROUND); +#ifdef INCLUDE_INTRO pMapDisplay->pBitmaps[BITMAP_1] = (BMPMAP*)Intro[VarsUi.Pointer]; +#endif pMapDisplay->UpdateMask = BITMAP_BIT(BITMAP_1); pMapDisplay->Flags |= DISPLAY_ON; @@ -1336,7 +1346,9 @@ void cUiCtrl(void) { VarsUi.LowBattHasOccured = 2; pMapDisplay->EraseMask = SCREEN_BIT(SCREEN_BACKGROUND); +#ifdef INCLUDE_INTRO pMapDisplay->pBitmaps[BITMAP_1] = (BMPMAP*)Intro[VarsUi.Pointer]; +#endif pMapDisplay->UpdateMask = BITMAP_BIT(BITMAP_1); IOMapUi.Flags &= ~UI_ENABLE_STATUS_UPDATE; VarsUi.State = 0; @@ -1368,6 +1380,7 @@ void cUiCtrl(void) VarsUi.LowBattHasOccured = 1; } } +#ifdef INCLUDE_INTRO if (++VarsUi.Timer >= (INTRO_SHIFT_TIME)) { switch (VarsUi.State) @@ -1420,10 +1433,14 @@ void cUiCtrl(void) } } +#else + pMapDisplay->EraseMask |= SCREEN_BIT(SCREEN_BACKGROUND); + IOMapUi.State = INIT_MENU; +#endif } } break; - +#ifdef INCLUDE_INTRO case INIT_WAIT : { if (++VarsUi.Timer >= INTRO_STOP_TIME) @@ -1433,7 +1450,7 @@ void cUiCtrl(void) } } break; - +#endif case INIT_MENU : { // Restart menu system diff --git a/AT91SAM7S256/Source/c_ui.h b/AT91SAM7S256/Source/c_ui.h index 08dc1d8..83d5a62 100644 --- a/AT91SAM7S256/Source/c_ui.h +++ b/AT91SAM7S256/Source/c_ui.h @@ -19,7 +19,11 @@ #ifndef C_UI #define C_UI +#ifdef INCLUDE_DATALOG #define DATALOGENABLED 1 // 1 == Datalog enable +#else +#define DATALOGENABLED 0 // 0 == Datalog disabled +#endif #define NO_OF_FEEDBACK_CHARS 12 // Chars left when bitmap also showed #define SIZE_OF_CURSOR 16 // Bitmap size of cursor (header + 8x8 pixels) @@ -283,6 +287,7 @@ typedef struct UBYTE FileRight; // File right UBYTE NoOfFiles; // No of files +#ifdef INCLUDE_OBP // On brick programming menu UBYTE ProgramSteps[ON_BRICK_PROGRAMSTEPS]; // On brick programming steps UBYTE ProgramStepPointer; // On brick programming step pointer @@ -290,7 +295,8 @@ typedef struct UBYTE FileHeader[FILEHEADER_LENGTH]; // File header for programs UBYTE *FeedBackText; // Program end text UWORD OBPTimer; // Graphic update timer - +#endif + // BT search menu UBYTE NoOfDevices; // BT search no of devices found UBYTE NoOfNames; // BT search no of names found @@ -337,6 +343,7 @@ typedef struct SLONG ViewSampleValue; // Latch for sensor values UBYTE ViewSampleValid; // Latch for sensor valid +#ifdef INCLUDE_DATALOG // Datalog ULONG DatalogOldTick; ULONG DatalogRTC; // Real time in mS @@ -348,7 +355,8 @@ typedef struct UWORD DatalogError; // Error code UBYTE DatalogPort[DATALOGPORTS]; // Logging sensor UBYTE Update; // Update icons flag - +#endif + // NV storage ULONG NVTmpLength; // Non volatile filelength SWORD NVTmpHandle; // Non volatile filehandle diff --git a/AT91SAM7S256/Source/c_ui.iom b/AT91SAM7S256/Source/c_ui.iom index a33505e..6adcbc0 100644 --- a/AT91SAM7S256/Source/c_ui.iom +++ b/AT91SAM7S256/Source/c_ui.iom @@ -31,12 +31,16 @@ enum // Various filenames without extension #define UI_NONVOLATILE "NVConfig" // Ui non volatile config filename +#ifdef INCLUDE_OBP #define UI_PROGRAM_DEFAULT "Untitled" // On brick programming default filename #define UI_PROGRAM_TEMP "Program" // On brick programming tmp filename #define UI_PROGRAM_READER "RPGReader" // On brick programming script reader filename +#endif +#ifdef INCLUDE_DATALOG #define UI_DATALOG_FILENAME "OBD_" // On brick datalog filename #define UI_DATALOG_DEFAULT "Untitled" // On brick datalog default name #define UI_DATALOG_TEMP "Tmp" // On brick datalog tmp filename +#endif #define UI_STARTUP_SOUND "! Startup" // Sound file activated when the menu system starts up #define UI_KEYCLICK_SOUND "! Click" // Sound file activated when key pressed in the menu system #define UI_ATTENTION_SOUND "! Attention" // Sound file activated when incomming BT requests attention diff --git a/AT91SAM7S256/Source/d_output.c b/AT91SAM7S256/Source/d_output.c index e6de984..73719cc 100644 --- a/AT91SAM7S256/Source/d_output.c +++ b/AT91SAM7S256/Source/d_output.c @@ -83,6 +83,25 @@ static SYNCMOTORDATA SyncData; static UBYTE RegTime; +UBYTE dOutputRunStateAtLimit(MOTORDATA * pMD) +{ +// return MOTOR_RUN_STATE_IDLE; + return pMD->RunStateAtLimit; +} + +UBYTE dOutputRampDownToLimit(MOTORDATA * pMD) +{ +// return 0; + return pMD->RampDownToLimit; +} + +UBYTE dOutputRegModeAtLimit(MOTORDATA * pMD) +{ + if (dOutputRunStateAtLimit(pMD)==MOTOR_RUN_STATE_HOLD) + return REGSTATE_REGULATED; + return REGSTATE_IDLE; +} + void dOutputInit(void) { UBYTE Temp; @@ -164,7 +183,7 @@ void dOutputCtrl(void) pMD->MotorTargetSpeed = 0; pMD->RegulationTimeCount = 0; pMD->DeltaCaptureCount = 0; -// pMD->MotorRunState = MOTOR_RUN_STATE_RUNNING; + pMD->MotorRunState = MOTOR_RUN_STATE_RUNNING; } if (pMD->RegulationTimeCount > RegTime) { @@ -484,7 +503,7 @@ void dOutputRampUpFunction(UBYTE MotorNr) { if (pMD->CurrentCaptureCount > (pMD->MotorRampTachoCountOld + pMD->MotorRampUpIncrement)) { - pMD->MotorTargetSpeed++; + pMD->MotorTargetSpeed += 1; pMD->MotorRampTachoCountOld = pMD->CurrentCaptureCount; pMD->MotorRampUpCount = 0; } @@ -493,7 +512,7 @@ void dOutputRampUpFunction(UBYTE MotorNr) if (!(pMD->RegulationMode & REGSTATE_REGULATED)) { pMD->MotorRampUpCount++; - if (pMD->MotorRampUpCount > RegTime) + if (pMD->MotorRampUpCount > 100) { pMD->MotorRampUpCount = 0; pMD->MotorTargetSpeed++; @@ -505,7 +524,7 @@ void dOutputRampUpFunction(UBYTE MotorNr) { if (pMD->CurrentCaptureCount < (pMD->MotorRampTachoCountOld + pMD->MotorRampUpIncrement)) { - pMD->MotorTargetSpeed--; + pMD->MotorTargetSpeed -= 1; pMD->MotorRampTachoCountOld = pMD->CurrentCaptureCount; pMD->MotorRampUpCount = 0; } @@ -514,7 +533,7 @@ void dOutputRampUpFunction(UBYTE MotorNr) if (!(pMD->RegulationMode & REGSTATE_REGULATED)) { pMD->MotorRampUpCount++; - if (pMD->MotorRampUpCount > RegTime) + if (pMD->MotorRampUpCount > 100) { pMD->MotorRampUpCount = 0; pMD->MotorTargetSpeed--; @@ -528,7 +547,7 @@ void dOutputRampUpFunction(UBYTE MotorNr) if ((pMD->CurrentCaptureCount - pMD->MotorRampTachoCountStart) >= (pMD->MotorTachoCountToRun - pMD->MotorRampTachoCountStart)) { pMD->MotorTargetSpeed = pMD->MotorSetSpeed; - pMD->MotorRunState = pMD->RunStateAtLimit; + pMD->MotorRunState = dOutputRunStateAtLimit(pMD); } } else @@ -536,7 +555,7 @@ void dOutputRampUpFunction(UBYTE MotorNr) if ((pMD->CurrentCaptureCount + pMD->MotorRampTachoCountStart) <= (pMD->MotorTachoCountToRun + pMD->MotorRampTachoCountStart)) { pMD->MotorTargetSpeed = pMD->MotorSetSpeed; - pMD->MotorRunState = pMD->RunStateAtLimit; + pMD->MotorRunState = dOutputRunStateAtLimit(pMD); } } if (pMD->MotorSetSpeed > 0) @@ -645,7 +664,7 @@ void dOutputRampDownFunction(UBYTE MotorNr) if ((pMD->RegulationMode & REGSTATE_SYNCHRONE) && (pMD->TurnParameter != 0)) { dOutputSyncTachoLimitControl(MotorNr); - if (pMD->MotorRunState == pMD->RunStateAtLimit) + if (pMD->MotorRunState == dOutputRunStateAtLimit(pMD)) { dOutputMotorReachedTachoLimit(MotorNr); } @@ -673,13 +692,6 @@ void dOutputRampDownFunction(UBYTE MotorNr) } } -UBYTE dOutputRegModeAtLimit(UBYTE RunStateAtLimit) -{ - if (RunStateAtLimit==MOTOR_RUN_STATE_HOLD) - return REGSTATE_REGULATED; - return REGSTATE_IDLE; -} - /* Function used to tell whether the wanted position is obtained */ void dOutputTachoLimitControl(UBYTE MotorNr) { @@ -692,14 +704,14 @@ void dOutputTachoLimitControl(UBYTE MotorNr) } else { - if (pMD->RampDownToLimit == 0) + if (dOutputRampDownToLimit(pMD) == 0) { if (pMD->MotorSetSpeed > 0) { if ((pMD->CurrentCaptureCount >= pMD->MotorTachoCountToRun)) { - pMD->MotorRunState = pMD->RunStateAtLimit; - pMD->RegulationMode = dOutputRegModeAtLimit(pMD->RunStateAtLimit); + pMD->MotorRunState = dOutputRunStateAtLimit(pMD); + pMD->RegulationMode = dOutputRegModeAtLimit(pMD); } } else @@ -708,8 +720,8 @@ void dOutputTachoLimitControl(UBYTE MotorNr) { if (pMD->CurrentCaptureCount <= pMD->MotorTachoCountToRun) { - pMD->MotorRunState = pMD->RunStateAtLimit; - pMD->RegulationMode = dOutputRegModeAtLimit(pMD->RunStateAtLimit); + pMD->MotorRunState = dOutputRunStateAtLimit(pMD); + pMD->RegulationMode = dOutputRegModeAtLimit(pMD); } } } @@ -930,7 +942,7 @@ void dOutputSyncMotorPosition(UBYTE MotorOne, UBYTE MotorTwo) if (pOne->TurnParameter != 0) { - if ((pOne->MotorBlockTachoCount != 0) || (pTwo->MotorBlockTachoCount != 0)) + if ((pOne->MotorBlockTachoCount != 0) || (pTwo->MotorBlockTachoCount)) { if (pOne->MotorTargetSpeed >= 0) { @@ -1124,15 +1136,15 @@ void dOutputMotorReachedTachoLimit(UBYTE MotorNr) pOne->MotorSetSpeed = 0; pOne->MotorTargetSpeed = 0; pOne->MotorActualSpeed = 0; - pOne->MotorRunState = pOne->RunStateAtLimit; - pOne->RegulationMode = dOutputRegModeAtLimit(pOne->RunStateAtLimit); + pOne->MotorRunState = dOutputRunStateAtLimit(pOne); + pOne->RegulationMode = dOutputRegModeAtLimit(pOne); if (MotorTwo != 0xFF) { MOTORDATA * pTwo = &(MotorData[MotorTwo]); pTwo->MotorSetSpeed = 0; pTwo->MotorTargetSpeed = 0; pTwo->MotorActualSpeed = 0; - pTwo->MotorRunState = pTwo->RunStateAtLimit; - pTwo->RegulationMode = dOutputRegModeAtLimit(pTwo->RunStateAtLimit); + pTwo->MotorRunState = dOutputRunStateAtLimit(pTwo); + pTwo->RegulationMode = dOutputRegModeAtLimit(pTwo); } } else @@ -1142,8 +1154,8 @@ void dOutputMotorReachedTachoLimit(UBYTE MotorNr) pOne->MotorTargetSpeed = 0; pOne->MotorActualSpeed = 0; } - pOne->MotorRunState = pOne->RunStateAtLimit; - pOne->RegulationMode = dOutputRegModeAtLimit(pOne->RunStateAtLimit); + pOne->MotorRunState = dOutputRunStateAtLimit(pOne); + pOne->RegulationMode = dOutputRegModeAtLimit(pOne); } } @@ -1171,14 +1183,14 @@ void dOutputSyncTachoLimitControl(UBYTE MotorNr) MOTORDATA * pTwo = &(MotorData[MotorTwo]); SLONG l1 = pOne->MotorTachoCountToRun; SLONG l2 = pTwo->MotorTachoCountToRun; - UBYTE NewRunState1 = pOne->RunStateAtLimit; - UBYTE NewRunState2 = pTwo->RunStateAtLimit; - if (pOne->RampDownToLimit == OPTION_RAMPDOWNTOLIMIT) + UBYTE NewRunState1 = dOutputRunStateAtLimit(pOne); + UBYTE NewRunState2 = dOutputRunStateAtLimit(pTwo); + if (dOutputRampDownToLimit(pOne) == OPTION_RAMPDOWNTOLIMIT) { NewRunState1 = MOTOR_RUN_STATE_RAMPDOWN; l1 = (SLONG)((float)l1 * 0.80f); } - if (pTwo->RampDownToLimit == OPTION_RAMPDOWNTOLIMIT) + if (dOutputRampDownToLimit(pTwo) == OPTION_RAMPDOWNTOLIMIT) { NewRunState2 = MOTOR_RUN_STATE_RAMPDOWN; l2 = (SLONG)((float)l2 * 0.80f); -- cgit v1.2.3 From e6955bc46ce1c07934807323acc502148c99f1f9 Mon Sep 17 00:00:00 2001 From: tcsadmin Date: Fri, 21 Jan 2011 22:44:30 +0000 Subject: Revised the stripped version of the firmware git-svn-id: https://mindboards.svn.sourceforge.net/svnroot/mindboards/lms_nbcnxc/branches/version_131@33 c9361245-7fe8-9947-84e8-057757c4e366 --- AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep | 3768 ++++++++++---------- AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp | 3 - .../SAM7S256/Tools/settings/LMS_ARM.cspy.bat | 8 +- AT91SAM7S256/SAM7S256/Tools/settings/LMS_ARM.wsdt | 8 +- AT91SAM7S256/Source/Functions.inl | 26 +- AT91SAM7S256/Source/c_ui.c | 16 +- AT91SAM7S256/Source/c_ui.h | 6 +- AT91SAM7S256/Source/c_ui.iom | 4 +- 8 files changed, 1918 insertions(+), 1921 deletions(-) (limited to 'AT91SAM7S256/Source/c_ui.c') diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep index dc7b2a8..a658c5b 100644 --- a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.dep @@ -2,103 +2,26 @@ 2 - 2897159082 + 2103580747 Benchmark - $PROJ_DIR$\..\..\Source\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_usb.c - $PROJ_DIR$\..\..\Source\d_button.h - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_button.c - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\Benchmark\Obj\c_comm.r79 - $PROJ_DIR$\Benchmark\Obj\c_ioctrl.pbi - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.iom - $PROJ_DIR$\Benchmark\Obj\c_sound.r79 - $PROJ_DIR$\..\..\Source\d_hispeed.r - $TOOLKIT_DIR$\inc\DLib_Threads.h - $TOOLKIT_DIR$\inc\string.h $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\..\Source\d_timer.c - $PROJ_DIR$\..\..\Source\c_display.c - $PROJ_DIR$\..\..\Source\c_input.c - $PROJ_DIR$\..\..\Source\c_ioctrl.c - $PROJ_DIR$\..\..\Source\c_loader.c - $PROJ_DIR$\..\..\Source\c_lowspeed.c - $PROJ_DIR$\..\..\Source\c_output.c - $PROJ_DIR$\..\..\Source\c_sound.c - $PROJ_DIR$\..\..\Source\c_ui.c - $PROJ_DIR$\..\Include\Cstartup.s79 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c - $PROJ_DIR$\..\..\Source\d_bt.c - $PROJ_DIR$\..\..\Source\d_button.c - $PROJ_DIR$\..\..\Source\d_display.c - $PROJ_DIR$\..\..\Source\d_hispeed.c - $PROJ_DIR$\..\..\Source\d_input.c - $PROJ_DIR$\..\..\Source\d_ioctrl.c - $PROJ_DIR$\..\..\Source\d_loader.c - $PROJ_DIR$\..\..\Source\d_lowspeed.c - $PROJ_DIR$\..\..\Source\d_output.c - $PROJ_DIR$\..\..\Source\d_sound.c - $PROJ_DIR$\..\..\Source\c_display.iom - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\d_output.h - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt - $PROJ_DIR$\..\..\Source\d_sound.h - $PROJ_DIR$\..\..\Source\Step.txt - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.h $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\..\Source\d_bt.r $PROJ_DIR$\Benchmark\Obj\d_sound.r79 $PROJ_DIR$\Benchmark\Obj\d_usb.pbi - $PROJ_DIR$\..\..\Source\RCXintro_12.txt $PROJ_DIR$\Benchmark\Obj\c_display.pbi + $PROJ_DIR$\..\..\Source\RCXintro_12.txt $PROJ_DIR$\..\..\Source\d_ioctrl.r $PROJ_DIR$\Benchmark\Obj\c_cmd.pbi - $PROJ_DIR$\..\..\Source\RCXintro_5.txt - $PROJ_DIR$\Benchmark\Obj\d_lowspeed.pbi - $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $PROJ_DIR$\..\Lib\dl4tptinl8n.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\Benchmark\Obj\d_ioctrl.pbi - $PROJ_DIR$\Benchmark\Obj\d_input.r79 - $PROJ_DIR$\Benchmark\Obj\c_input.r79 - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $PROJ_DIR$\Benchmark\Obj\c_lowspeed.r79 - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\Benchmark\Obj\c_ui.pbi - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\Ok.txt - $PROJ_DIR$\..\..\Source\RCXintro_9.txt + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_button.h $PROJ_DIR$\Benchmark\Obj\c_display.r79 + $PROJ_DIR$\..\..\Source\RCXintro_9.txt $PROJ_DIR$\..\..\Source\Font.txt $PROJ_DIR$\Benchmark\Obj\c_lowspeed.pbi - $PROJ_DIR$\..\..\Source\d_button.r - $PROJ_DIR$\Benchmark\Obj\d_usb.r79 - $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\Benchmark\Obj\c_cmd.r79 - $PROJ_DIR$\..\..\Source\d_sound.r - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $PROJ_DIR$\Benchmark\Obj\d_display.r79 - $TOOLKIT_DIR$\inc\xlocale_c.h - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\Benchmark\Obj\d_lowspeed.r79 - $PROJ_DIR$\..\..\Source\c_cmd.iom $PROJ_DIR$\..\..\Source\d_hispeed.h $TOOLKIT_DIR$\inc\yvals.h $PROJ_DIR$\..\..\Source\Status.txt @@ -119,9 +42,9 @@ $PROJ_DIR$\..\..\Source\Submenu05.rms $PROJ_DIR$\Benchmark\Obj\d_timer.r79 $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\Benchmark\Obj\c_loader.pbi $PROJ_DIR$\..\..\Source\RCXintro_3.txt $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\Benchmark\Obj\c_loader.pbi $PROJ_DIR$\..\..\Source\Submenu07.rms $TOOLKIT_DIR$\inc\xtls.h $PROJ_DIR$\Benchmark\Obj\d_loader.r79 @@ -129,8 +52,8 @@ $TOOLKIT_DIR$\inc\xmtx.h $PROJ_DIR$\..\..\Source\d_bt.h $PROJ_DIR$\..\..\Source\Test1.txt - $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\Benchmark\Obj\c_input.pbi + $PROJ_DIR$\..\..\Source\RCXintro_15.txt $PROJ_DIR$\Benchmark\Obj\c_loader.r79 $PROJ_DIR$\..\..\Source\d_ioctrl.h $PROJ_DIR$\..\..\Source\c_comm.iom @@ -153,12 +76,12 @@ $TOOLKIT_DIR$\inc\ctype.h $PROJ_DIR$\..\..\Source\Submenu04.rms $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\..\..\Source\RCXintro_14.txt $PROJ_DIR$\Benchmark\Obj\d_bt.pbi + $PROJ_DIR$\..\..\Source\RCXintro_14.txt $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\Benchmark\Obj\d_display.pbi $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h $PROJ_DIR$\..\Include\sam7s256.h - $PROJ_DIR$\Benchmark\Obj\d_display.pbi $TOOLKIT_DIR$\inc\wchar.h $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h $PROJ_DIR$\..\..\Source\d_input.h @@ -168,22 +91,22 @@ $PROJ_DIR$\..\..\Source\d_timer.h $PROJ_DIR$\Benchmark\Obj\c_sound.pbi $PROJ_DIR$\..\..\Source\modules.h - $PROJ_DIR$\..\..\Source\RCXintro_10.txt $PROJ_DIR$\Benchmark\Obj\d_input.pbi + $PROJ_DIR$\..\..\Source\RCXintro_10.txt $PROJ_DIR$\Benchmark\Obj\d_button.r79 $PROJ_DIR$\..\..\Source\Wait.txt $PROJ_DIR$\Benchmark\Obj\d_bt.r79 $PROJ_DIR$\..\..\Source\c_ui.iom $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\LowBattery.txt $PROJ_DIR$\Benchmark\Obj\c_ui.r79 + $PROJ_DIR$\..\..\Source\LowBattery.txt $PROJ_DIR$\..\..\Source\Port.txt $PROJ_DIR$\..\..\Source\c_output.h $PROJ_DIR$\Benchmark\Obj\c_output.pbi $PROJ_DIR$\Benchmark\Obj\c_button.r79 $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\d_loader.r $PROJ_DIR$\Benchmark\Obj\m_sched.pbi $PROJ_DIR$\Benchmark\Obj\d_output.r79 @@ -199,617 +122,694 @@ $PROJ_DIR$\..\..\Source\d_input.r $PROJ_DIR$\..\..\Source\d_usb.h $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\..\Source\RCXintro_2.txt $PROJ_DIR$\Benchmark\Obj\d_hispeed.pbi + $PROJ_DIR$\..\..\Source\RCXintro_2.txt $PROJ_DIR$\Benchmark\Obj\d_output.pbi $PROJ_DIR$\..\..\Source\d_lowspeed.r $PROJ_DIR$\Benchmark\Obj\d_hispeed.r79 + $PROJ_DIR$\..\..\Source\d_hispeed.r + $TOOLKIT_DIR$\inc\DLib_Threads.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\Benchmark\Obj\c_ui.pbi + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\Ok.txt + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\Benchmark\Obj\c_lowspeed.r79 + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\Benchmark\Obj\c_comm.r79 + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\Benchmark\Obj\c_ioctrl.pbi + $TOOLKIT_DIR$\inc\xtinfo.h + $PROJ_DIR$\Benchmark\Obj\d_ioctrl.pbi + $PROJ_DIR$\Benchmark\Obj\d_input.r79 + $PROJ_DIR$\Benchmark\Obj\c_input.r79 + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\Benchmark\Obj\d_lowspeed.pbi + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $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$\..\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$\Benchmark\Obj\c_sound.r79 + $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$\..\..\Source\d_button.r + $PROJ_DIR$\Benchmark\Obj\d_usb.r79 + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\Benchmark\Obj\c_cmd.r79 + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\Benchmark\Obj\d_display.r79 + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\Benchmark\Obj\d_lowspeed.r79 + $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_cmd.c - BICOMP - 179 + ICCARM + 189 - ICCARM - 103 + BICOMP + 8 - BICOMP - 97 161 136 151 68 43 181 157 104 184 99 108 128 52 149 172 3 150 92 51 107 + ICCARM + 20 84 197 99 27 19 90 53 22 124 50 38 10 74 82 109 17 188 159 131 153 122 195 123 65 192 - ICCARM - 97 161 136 151 68 43 181 157 104 184 99 108 128 52 149 172 3 150 92 51 107 + BICOMP + 20 84 197 99 27 19 90 53 22 124 50 38 10 74 82 109 17 188 131 153 122 195 123 65 192 - $PROJ_DIR$\..\..\Source\d_usb.c + [ROOT_NODE] - BICOMP + XLINK 55 - - ICCARM - 82 - + + + $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd - BICOMP - 97 136 151 68 191 156 - - - ICCARM - 97 136 151 68 191 156 + BILINK + 28 111 8 58 5 46 148 36 15 96 83 126 70 32 73 116 85 150 24 155 118 60 110 4 102 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\c_comm.c - BICOMP - 188 + ICCARM + 146 - ICCARM - 174 + BICOMP + 58 - BICOMP - 97 161 184 99 5 + ICCARM + 20 84 50 19 147 90 197 124 104 114 16 44 123 17 188 159 131 153 122 195 67 98 40 43 65 91 194 149 25 76 - ICCARM - 97 161 184 99 5 + BICOMP + 20 84 50 19 147 90 197 124 104 114 16 44 123 17 188 131 153 122 195 67 98 40 43 65 91 194 149 25 76 - $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\..\Source\d_loader.c - BICOMP - 59 + ICCARM + 41 - ICCARM - 84 + BICOMP + 24 - BICOMP - 97 161 92 177 104 96 167 130 99 40 127 114 3 150 159 186 94 83 45 6 15 90 16 142 86 + ICCARM + 20 84 59 75 141 29 101 123 17 188 159 131 153 122 195 67 98 40 43 65 91 194 149 25 76 - ICCARM - 97 161 92 177 104 96 167 130 99 40 127 114 3 150 159 186 94 83 63 45 6 15 90 16 142 86 + BICOMP + 20 84 59 75 141 29 101 123 17 188 131 153 122 195 67 98 40 43 65 91 194 149 25 76 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - BICOMP - 135 + ICCARM + 196 - ICCARM - 9 + BICOMP + 155 - BICOMP - 97 161 127 96 12 167 92 40 181 191 93 121 16 94 83 45 6 15 90 144 175 117 120 142 168 89 8 102 153 + ICCARM + 20 59 75 141 127 119 - ICCARM - 97 161 127 96 12 167 92 40 181 191 93 121 16 94 83 63 45 6 15 90 144 175 117 120 142 168 89 8 102 153 + BICOMP + 20 59 75 141 127 119 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\d_output.c - BICOMP - 187 + ICCARM + 103 - ICCARM - 111 + BICOMP + 118 - BICOMP - 97 136 151 68 159 158 + ICCARM + 20 59 75 141 9 57 - ICCARM - 97 136 151 68 159 158 + BICOMP + 20 59 75 141 9 57 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_sound.c - BICOMP - 57 + ICCARM + 3 - ICCARM - 78 + BICOMP + 60 - BICOMP - 16 94 83 45 6 15 90 97 161 40 52 112 + ICCARM + 20 59 75 141 134 190 - ICCARM - 16 94 83 63 45 6 15 90 97 161 40 52 112 + BICOMP + 20 59 75 141 134 190 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_timer.c - BICOMP - 124 + ICCARM + 34 - ICCARM - 67 + BICOMP + 110 - BICOMP - 97 161 157 104 155 177 + ICCARM + 20 59 75 141 82 81 - ICCARM - 97 161 157 104 155 177 + BICOMP + 20 59 75 141 82 81 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_usb.c - BICOMP - 10 + ICCARM + 187 - ICCARM - 133 + BICOMP + 4 - BICOMP - 97 161 12 51 126 + ICCARM + 20 59 75 141 114 79 - ICCARM - 97 161 12 51 126 + BICOMP + 20 59 75 141 114 79 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\m_sched.c - BICOMP - 115 + ICCARM + 26 - ICCARM - 125 + BICOMP + 102 - BICOMP - 97 161 96 12 106 108 + ICCARM + 20 84 59 75 141 132 104 80 27 107 22 31 51 1 72 95 10 74 197 139 30 - ICCARM - 97 161 96 12 106 108 + BICOMP + 20 84 59 75 141 132 104 80 27 107 22 31 51 1 72 95 10 74 197 139 30 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\c_button.c - BICOMP - 80 + ICCARM + 97 - ICCARM - 69 + BICOMP + 111 - BICOMP - 97 161 114 104 149 73 + ICCARM + 20 84 107 22 11 - ICCARM - 97 161 114 104 149 73 + BICOMP + 20 84 107 22 11 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\Include\Cstartup.s79 - BICOMP - 173 - - - ICCARM - 98 + AARM + 61 - BICOMP - 186 94 83 45 6 15 90 74 97 161 177 172 42 40 - - - ICCARM - 186 94 83 63 45 6 15 90 74 97 161 177 172 42 40 + AARM + 77 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - BICOMP - 160 + ICCARM + 52 - ICCARM - 13 + BICOMP + 28 - BICOMP - 142 94 83 45 6 15 90 16 97 161 130 96 128 47 + ICCARM + 138 - ICCARM - 142 94 83 63 45 6 15 90 16 97 161 130 96 128 47 + BICOMP + 138 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\d_bt.c - BICOMP - 72 + ICCARM + 89 - ICCARM - 170 + BICOMP + 70 - BICOMP - 186 94 83 45 6 15 90 16 144 175 117 120 142 168 89 8 102 153 97 161 167 107 136 151 68 40 96 99 130 104 177 12 92 127 114 182 169 79 48 183 185 171 76 165 64 140 71 44 193 113 62 60 50 176 70 77 162 46 56 41 147 123 87 95 2 11 119 131 143 141 145 110 146 116 0 189 122 192 + ICCARM + 20 84 59 75 141 44 2 123 17 188 159 131 153 122 195 - ICCARM - 186 94 83 63 45 6 15 90 16 144 175 117 120 142 168 89 8 102 153 97 161 167 107 136 151 68 40 96 99 130 104 177 12 92 127 114 182 169 79 48 183 185 171 76 165 64 140 71 44 193 113 62 60 50 176 70 77 162 46 56 41 147 123 87 95 2 11 119 131 143 141 145 110 146 116 0 189 122 192 + BICOMP + 20 84 59 75 141 44 2 123 17 188 131 153 122 195 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\d_button.c - AARM - 138 + ICCARM + 87 + + + BICOMP + 32 - AARM - 154 + ICCARM + 20 59 75 141 11 186 + + + BICOMP + 20 59 75 141 11 186 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_display.c - BICOMP - 105 + ICCARM + 191 - ICCARM - 129 + BICOMP + 73 - BICOMP - 49 + ICCARM + 20 59 75 141 35 129 - ICCARM - 49 + BICOMP + 20 59 75 141 123 17 188 131 153 122 195 35 129 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_hispeed.c - BICOMP - 148 + ICCARM + 120 - ICCARM - 166 + BICOMP + 116 - BICOMP - 97 161 136 151 68 121 53 16 94 83 45 6 15 90 + ICCARM + 20 59 75 141 16 121 - ICCARM - 97 161 136 151 68 121 53 16 94 83 63 45 6 15 90 + BICOMP + 20 59 75 141 16 121 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_input.c - BICOMP - 109 + ICCARM + 151 - ICCARM - 164 + BICOMP + 85 - BICOMP - 97 136 151 68 5 81 + ICCARM + 20 59 75 141 80 27 78 113 - ICCARM - 97 136 151 68 5 81 + BICOMP + 20 59 75 141 80 27 78 113 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_ioctrl.c - BICOMP - 152 + ICCARM + 23 - ICCARM - 88 + BICOMP + 150 - BICOMP - 97 136 151 68 16 94 83 45 6 15 90 112 75 + ICCARM + 123 17 188 159 131 153 122 195 20 59 75 141 49 7 - ICCARM - 97 136 151 68 112 75 + BICOMP + 123 17 188 131 153 122 195 20 59 75 141 49 7 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_display.c - BICOMP - 194 + ICCARM + 12 - ICCARM - 197 + BICOMP + 5 - BICOMP - 97 136 151 68 93 14 + ICCARM + 123 17 188 159 131 153 122 195 20 84 124 1 35 - ICCARM - 97 136 151 68 93 14 + BICOMP + 123 17 188 131 153 122 195 20 84 124 1 35 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\c_input.c - BICOMP - 163 + ICCARM + 152 - ICCARM - 66 + BICOMP + 46 - BICOMP - 97 136 151 68 157 104 155 190 + ICCARM + 20 84 80 27 78 99 - ICCARM - 97 136 151 68 157 104 155 190 + BICOMP + 20 84 80 27 78 99 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c - BICOMP - 65 + ICCARM + 56 - ICCARM - 100 + BICOMP + 148 - BICOMP - 16 94 83 45 6 15 90 97 136 151 68 126 58 + ICCARM + 20 84 147 139 49 - ICCARM - 16 94 83 63 45 6 15 90 97 136 151 68 126 58 + BICOMP + 20 84 147 139 49 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_loader.c - BICOMP - 101 + ICCARM + 48 - ICCARM - 118 + BICOMP + 36 - BICOMP - 97 161 136 151 68 106 178 16 94 83 45 6 15 90 144 175 117 120 142 168 89 8 102 153 + ICCARM + 20 84 19 147 29 31 - ICCARM - 97 161 136 151 68 106 178 16 94 83 63 45 6 15 90 144 175 117 120 142 168 89 8 102 153 + BICOMP + 20 84 19 147 29 31 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c - BICOMP - 61 + ICCARM + 142 - ICCARM - 91 + BICOMP + 15 - BICOMP - 97 136 151 68 73 196 + ICCARM + 20 84 38 27 72 127 - ICCARM - 97 136 151 68 73 196 + BICOMP + 20 84 38 27 72 127 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\c_output.c - BICOMP - 195 + ICCARM + 21 - ICCARM - 180 + BICOMP + 96 - BICOMP - 97 136 151 68 42 134 + ICCARM + 109 17 188 159 131 153 122 195 128 20 84 99 95 9 124 - ICCARM - 97 136 151 68 42 134 + BICOMP + 109 17 188 131 153 122 195 128 20 84 99 95 9 124 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\c_sound.c - BICOMP - 137 + ICCARM + 177 - ICCARM - 54 + BICOMP + 83 - BICOMP - 97 136 151 68 47 85 + ICCARM + 65 17 188 159 131 153 122 195 123 20 84 53 19 51 134 - ICCARM - 97 136 151 68 47 85 + BICOMP + 65 17 188 131 153 122 195 123 20 84 53 19 51 134 - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\c_ui.c - XLINK - 132 + ICCARM + 92 + + + BICOMP + 126 - - - $PROJ_DIR$\Benchmark\Obj\LMS_ARM.pbd - BILINK - 105 188 59 135 57 124 10 115 80 173 160 72 148 109 152 194 163 65 101 61 195 137 187 55 179 + ICCARM + 109 17 188 159 131 153 122 195 123 67 98 40 43 65 91 194 149 25 76 20 84 90 30 59 75 141 124 19 22 53 27 99 147 197 50 38 105 93 14 137 106 108 94 130 88 157 63 143 133 117 37 158 156 140 100 144 13 86 136 6 125 71 47 193 18 154 145 42 54 66 64 68 33 69 39 166 112 45 115 + + + BICOMP + 109 17 188 131 153 122 195 123 67 98 40 43 65 91 194 149 25 76 20 84 90 30 59 75 141 124 19 22 53 27 99 147 197 50 38 105 93 14 137 106 108 94 130 88 157 63 143 133 117 37 158 156 140 100 144 13 86 136 6 125 71 47 193 18 154 145 42 54 66 64 68 33 69 39 166 112 45 115 @@ -824,104 +824,94 @@ Bin Output - $PROJ_DIR$\..\..\Source\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_usb.c - $PROJ_DIR$\..\..\Source\d_button.h - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_button.c - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.iom - $PROJ_DIR$\..\..\Source\d_hispeed.r - $TOOLKIT_DIR$\inc\DLib_Threads.h - $TOOLKIT_DIR$\inc\string.h $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\..\Source\d_timer.c - $PROJ_DIR$\..\..\Source\c_display.c - $PROJ_DIR$\..\..\Source\c_input.c - $PROJ_DIR$\..\..\Source\c_ioctrl.c - $PROJ_DIR$\..\..\Source\c_loader.c - $PROJ_DIR$\..\..\Source\c_lowspeed.c - $PROJ_DIR$\..\..\Source\c_output.c - $PROJ_DIR$\..\..\Source\c_sound.c - $PROJ_DIR$\..\..\Source\c_ui.c - $PROJ_DIR$\..\Include\Cstartup.s79 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c - $PROJ_DIR$\..\..\Source\d_bt.c - $PROJ_DIR$\..\..\Source\d_button.c - $PROJ_DIR$\..\..\Source\d_display.c - $PROJ_DIR$\..\..\Source\d_hispeed.c - $PROJ_DIR$\..\..\Source\d_input.c - $PROJ_DIR$\..\..\Source\d_ioctrl.c - $PROJ_DIR$\..\..\Source\d_loader.c - $PROJ_DIR$\..\..\Source\d_lowspeed.c - $PROJ_DIR$\..\..\Source\d_output.c - $PROJ_DIR$\..\..\Source\d_sound.c - $PROJ_DIR$\..\..\Source\c_display.iom - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\d_output.h - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt - $PROJ_DIR$\..\..\Source\d_sound.h - $PROJ_DIR$\..\..\Source\Step.txt - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.h $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\..\Source\d_bt.r $PROJ_DIR$\..\..\Source\RCXintro_12.txt $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\RCXintro_5.txt - $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $PROJ_DIR$\..\Lib\dl4tptinl8n.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_button.h $PROJ_DIR$\..\..\Source\RCXintro_9.txt $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\d_button.r - $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\..\..\Source\d_sound.r - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $TOOLKIT_DIR$\inc\xlocale_c.h - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\..\..\Source\c_cmd.iom $PROJ_DIR$\..\..\Source\d_hispeed.h $TOOLKIT_DIR$\inc\yvals.h - $PROJ_DIR$\..\..\Source\d_led.c $PROJ_DIR$\..\..\Source\Status.txt $PROJ_DIR$\..\..\Source\c_loader.iom $PROJ_DIR$\..\..\Source\stdconst.h - $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\..\Source\c_button.iom + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $TOOLKIT_DIR$\inc\xtls.h + $PROJ_DIR$\..\..\Source\Ui.txt + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Submenu02.rms + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\Submenu01.rms + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.h + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_usb.r + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\c_ui.iom + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\d_loader.r + $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\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\d_hispeed.r + $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\Object\d_display.pbi $PROJ_DIR$\..\Object\d_display.s - $PROJ_DIR$\..\Object\c_lowspeed.r79 $PROJ_DIR$\..\Object\d_display.r79 - $PROJ_DIR$\..\Object\d_led.r79 - $PROJ_DIR$\..\Object\d_display.pbi - $PROJ_DIR$\..\Object\d_lowspeed.r79 - $PROJ_DIR$\..\Object\d_timer.pbi - $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 - $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\Submenu03.rms - $PROJ_DIR$\..\Object\d_ioctrl.s - $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\Object\d_output.s $PROJ_DIR$\..\Object\d_input.r79 $PROJ_DIR$\..\Object\d_usb.pbi $PROJ_DIR$\..\Object\d_hispeed.s @@ -929,22 +919,36 @@ $PROJ_DIR$\..\Object\c_output.s $PROJ_DIR$\..\Object\d_usb.s $PROJ_DIR$\..\Object\c_cmd.pbi - $PROJ_DIR$\..\Object\d_hispeed.pbi + $PROJ_DIR$\..\Object\Cstartup_SAM7.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\Cstartup_SAM7.s + $PROJ_DIR$\..\..\Source\c_led.iom $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\d_led.r79 + $PROJ_DIR$\..\Object\d_lowspeed.r79 + $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\..\Source\Submenu03.rms + $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_led.h + $PROJ_DIR$\..\Object\d_ioctrl.s + $PROJ_DIR$\..\Object\d_hispeed.pbi + $PROJ_DIR$\..\Object\d_output.s $PROJ_DIR$\..\Object\c_sound.s $PROJ_DIR$\..\Object\c_lowspeed.s - $PROJ_DIR$\..\..\Source\c_led.iom $TOOLKIT_DIR$\inc\ymath.h - $PROJ_DIR$\..\Object\c_comm.s $PROJ_DIR$\..\Object\c_lowspeed.pbi + $PROJ_DIR$\..\Object\c_comm.s $TOOLKIT_DIR$\inc\math.h $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\Object\d_lowspeed.pbi $PROJ_DIR$\..\..\Source\d_sound_adpcm.r $PROJ_DIR$\..\Object\d_lowspeed.s $PROJ_DIR$\..\Object\c_cmd.r79 @@ -958,11 +962,11 @@ $PROJ_DIR$\..\Object\c_button.pbi $PROJ_DIR$\..\Object\c_loader.pbi $PROJ_DIR$\..\Object\d_output.pbi - $PROJ_DIR$\..\Object\d_lowspeed.pbi + $PROJ_DIR$\..\..\Source\c_led.h $PROJ_DIR$\..\Object\LMS_ARM.map $PROJ_DIR$\..\Object\m_sched.s - $PROJ_DIR$\..\..\Source\c_led.h $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi $PROJ_DIR$\..\Object\d_ioctrl.r79 $PROJ_DIR$\..\Object\m_sched.pbi $PROJ_DIR$\..\Object\d_timer.r79 @@ -970,7 +974,7 @@ $PROJ_DIR$\..\Object\d_sound.r79 $PROJ_DIR$\..\Object\c_comm.r79 $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 - $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_display.pbi $PROJ_DIR$\..\Object\c_ui.s $PROJ_DIR$\..\Object\LMS_ARM.pbd $PROJ_DIR$\..\Object\c_comm.pbi @@ -983,1097 +987,1090 @@ $PROJ_DIR$\..\Object\c_ioctrl.r79 $PROJ_DIR$\..\Object\c_input.r79 $PROJ_DIR$\..\Object\d_ioctrl.pbi - $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\..\Source\d_led.r $PROJ_DIR$\..\Object\LMS_ARM.a79 $PROJ_DIR$\..\Object\c_output.r79 $PROJ_DIR$\..\Object\c_sound.r79 $PROJ_DIR$\..\Object\d_loader.pbi $PROJ_DIR$\..\Object\d_bt.pbi - $PROJ_DIR$\..\..\Source\d_led.r $PROJ_DIR$\..\Object\c_output.pbi $PROJ_DIR$\..\Object\d_bt.s $PROJ_DIR$\..\Object\d_usb.r79 $PROJ_DIR$\..\Object\Cstartup.r79 + $TOOLKIT_DIR$\inc\DLib_Threads.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\Ok.txt + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\c_comm.c $PROJ_DIR$\..\Object\d_input.s $PROJ_DIR$\..\Object\c_ui.pbi $PROJ_DIR$\..\Object\c_ui.r79 $PROJ_DIR$\..\Object\d_button.r79 - $PROJ_DIR$\..\..\Source\c_button.iom - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\c_input.iom - $PROJ_DIR$\..\..\Source\d_loader.h - $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\c_loader.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\d_display.h - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\..\..\Source\Submenu07.rms - $TOOLKIT_DIR$\inc\xtls.h - $PROJ_DIR$\..\..\Source\Ui.txt - $TOOLKIT_DIR$\inc\xmtx.h - $PROJ_DIR$\..\..\Source\d_bt.h - $PROJ_DIR$\..\..\Source\Test1.txt - $PROJ_DIR$\..\..\Source\RCXintro_15.txt - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $PROJ_DIR$\..\..\Source\c_comm.iom - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\c_sound.iom - $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\Info.txt - $PROJ_DIR$\..\..\Source\Submenu02.rms - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\Submenu01.rms - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Submenu04.rms - $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\..\..\Source\RCXintro_14.txt - $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\..\Include\sam7s256.h - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\d_usb.r - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_timer.r - $PROJ_DIR$\..\..\Source\d_timer.h - $PROJ_DIR$\..\..\Source\modules.h - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\..\..\Source\Wait.txt - $PROJ_DIR$\..\..\Source\c_ui.iom - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\Port.txt - $PROJ_DIR$\..\..\Source\c_output.h - $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt - $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\d_loader.r - $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\Running.txt - $TOOLKIT_DIR$\inc\stdio.h - $PROJ_DIR$\..\..\Source\BtTest.inc - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\d_usb.h - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $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$\..\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\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$\..\..\Source\d_button.r + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_cmd.c - BICOMP - 140 + ICCARM + 127 - ICCARM - 106 + BICOMP + 94 - BICOMP - 79 216 197 208 57 40 228 213 176 231 174 179 193 49 206 223 3 207 73 48 178 + ICCARM + 14 57 239 66 17 13 60 35 15 175 33 24 38 49 195 6 48 56 74 11 233 206 181 201 173 238 174 41 122 119 84 235 - ICCARM - 79 216 197 208 57 40 228 213 176 231 174 179 193 49 206 223 3 207 73 48 178 + BICOMP + 14 57 239 66 17 13 60 35 15 175 33 24 38 49 195 6 48 56 74 11 233 181 201 173 238 174 41 122 119 84 235 - $PROJ_DIR$\..\..\Source\d_usb.c + [ROOT_NODE] - BICOMP - 99 - - - ICCARM - 168 + XLINK + 134 139 164 - - - BICOMP - 79 197 208 57 236 212 - - - ICCARM - 79 197 208 57 236 212 - - - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\d_led.c - - BICOMP - 131 - ICCARM - 154 + 104 - - BICOMP - 79 216 231 174 5 - ICCARM - 79 216 231 174 5 + 14 38 49 195 113 163 - $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\Object\d_display.s - BICOMP - 104 - - - ICCARM - 123 + AARM + 87 - - - BICOMP - 79 216 73 226 176 78 219 194 174 37 192 183 197 208 57 3 207 215 233 75 67 42 6 12 72 13 200 119 116 80 69 - - - ICCARM - 79 216 73 226 176 78 219 194 174 37 192 183 197 208 57 3 207 215 233 75 67 55 42 6 12 72 13 200 119 116 80 69 - - - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\Object\d_hispeed.s - BICOMP - 149 + AARM + 80 + + + + $PROJ_DIR$\..\Object\c_input.s + - ICCARM - 144 + AARM + 161 - + + + $PROJ_DIR$\..\Object\c_output.s + - BICOMP - 79 216 192 78 10 219 73 37 228 236 74 188 13 75 67 42 6 12 72 202 224 185 187 200 220 71 8 175 209 + AARM + 165 + + + + $PROJ_DIR$\..\Object\d_usb.s + - ICCARM - 79 216 192 78 10 219 73 37 228 236 74 188 13 75 67 55 42 6 12 72 202 224 185 187 200 220 71 8 175 209 + AARM + 171 - + - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\Object\Cstartup_SAM7.s - BICOMP - 88 + AARM + 106 + + + + $PROJ_DIR$\..\Object\d_loader.s + - ICCARM - 141 + AARM + 156 - + + + $PROJ_DIR$\..\Object\c_cmd.s + - BICOMP - 79 197 208 57 215 214 + AARM + 127 + + + + $PROJ_DIR$\..\Object\c_loader.s + - ICCARM - 79 197 208 57 215 214 + AARM + 133 - + - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\Object\d_button.s - BICOMP - 159 + AARM + 189 + + + + $PROJ_DIR$\..\Object\d_ioctrl.s + - ICCARM - 120 + AARM + 143 - + + + $PROJ_DIR$\..\Object\d_output.s + - BICOMP - 13 75 67 42 6 12 72 79 216 37 49 181 + AARM + 130 + + + + $PROJ_DIR$\..\Object\c_sound.s + - ICCARM - 13 75 67 55 42 6 12 72 79 216 37 49 181 + AARM + 166 - + - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\Object\c_lowspeed.s - BICOMP - 151 + AARM + 103 + + + + $PROJ_DIR$\..\Object\c_comm.s + - ICCARM - 157 + AARM + 148 - + + + $PROJ_DIR$\..\Object\d_lowspeed.s + - BICOMP - 79 216 213 176 211 226 78 13 75 67 42 6 12 72 + AARM + 105 + + + + $PROJ_DIR$\..\Object\d_sound.s + - ICCARM - 79 216 213 176 211 226 78 13 75 67 55 42 6 12 72 + AARM + 147 - + - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\Object\c_display.s - BICOMP - 142 + AARM + 123 + + + + $PROJ_DIR$\..\Object\LMS_ARM.d79 + - ICCARM - 156 + XLINK + 139 164 - BICOMP - 79 216 10 48 191 - - - ICCARM - 79 216 10 48 191 + XLINK + 102 172 106 158 127 148 123 161 160 133 103 165 166 188 109 189 87 80 88 143 156 105 130 147 145 171 96 149 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\Object\m_sched.s - BICOMP - 132 + AARM + 96 + + + + $PROJ_DIR$\..\..\Source\c_led.c + ICCARM - 129 + 111 - - BICOMP - 79 216 78 10 177 179 13 75 67 42 6 12 72 - ICCARM - 79 216 78 10 177 179 13 75 67 55 42 6 12 72 + 14 57 101 138 113 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\Object\c_ui.s - BICOMP - 118 - - - ICCARM - 83 + AARM + 188 + + + $PROJ_DIR$\..\Object\LMS_ARM.pbd - BICOMP - 79 216 183 176 206 60 - - - ICCARM - 79 216 183 176 206 60 + BILINK + 142 135 94 153 150 155 146 136 120 169 132 187 168 98 85 115 112 162 167 124 137 128 107 89 144 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\Object\d_timer.s - BICOMP - 166 + AARM + 145 + + + + $PROJ_DIR$\..\Object\c_ioctrl.s + - ICCARM - 161 + AARM + 160 - + + + $PROJ_DIR$\..\Object\c_button.s + - BICOMP - 233 75 67 42 6 12 72 61 79 216 226 223 39 37 + AARM + 158 + + + + $PROJ_DIR$\..\Object\d_bt.s + - ICCARM - 233 75 67 55 42 6 12 72 61 79 216 226 223 39 37 + AARM + 109 - + - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\c_comm.c - BICOMP - 128 + ICCARM + 148 - ICCARM - 162 + BICOMP + 153 - BICOMP - 200 75 67 42 6 12 72 13 79 216 194 78 193 44 + ICCARM + 14 57 33 13 199 60 239 175 69 77 10 29 174 11 233 206 181 201 173 238 43 65 26 28 41 61 237 200 16 50 - ICCARM - 200 75 67 55 42 6 12 72 13 79 216 194 78 193 44 + BICOMP + 14 57 33 13 199 60 239 175 69 77 10 29 174 11 233 181 201 173 238 43 65 26 28 41 61 237 200 16 50 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\Object\d_input.s - BICOMP - 171 + AARM + 88 + + + + $PROJ_DIR$\..\..\Source\d_loader.c + ICCARM - 172 + 156 - - BICOMP - 233 75 67 42 6 12 72 13 202 224 185 187 200 220 71 8 175 209 79 216 219 178 197 208 57 37 78 174 194 176 226 10 73 192 183 229 221 65 45 230 232 222 63 218 56 198 59 41 238 182 54 53 47 225 58 64 217 43 51 38 205 190 70 77 2 9 186 195 201 199 94 203 180 204 184 0 234 189 237 + 167 + + ICCARM - 233 75 67 55 42 6 12 72 13 202 224 185 187 200 220 71 8 175 209 79 216 219 178 197 208 57 37 78 174 194 176 226 10 73 192 183 229 221 65 45 230 232 222 63 218 56 198 59 41 238 182 54 53 47 225 58 64 217 43 51 38 205 190 70 77 2 9 186 195 201 199 94 203 180 204 184 0 234 189 237 + 14 57 38 49 195 18 68 174 11 233 206 181 201 173 238 43 65 26 28 41 61 237 200 16 50 - - - - $PROJ_DIR$\..\Include\Cstartup.s79 - - - AARM - 169 - - - - AARM - 210 + BICOMP + 14 57 38 49 195 18 68 174 11 233 181 201 173 238 43 65 26 28 41 61 237 200 16 50 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - BICOMP - 146 + ICCARM + 105 - ICCARM - 89 + BICOMP + 124 - BICOMP - 46 + ICCARM + 14 38 49 195 177 81 - ICCARM - 46 + BICOMP + 14 38 49 195 177 81 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\d_output.c - BICOMP - 164 + ICCARM + 130 - ICCARM - 90 + BICOMP + 137 - BICOMP - 79 216 197 208 57 188 50 13 75 67 42 6 12 72 + ICCARM + 14 38 49 195 5 37 - ICCARM - 79 216 197 208 57 188 50 13 75 67 55 42 6 12 72 + BICOMP + 14 38 49 195 5 37 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_sound.c - BICOMP - 108 + ICCARM + 147 - ICCARM - 173 + BICOMP + 128 - BICOMP - 79 197 208 57 5 66 + ICCARM + 14 38 49 195 184 234 125 - ICCARM - 79 197 208 57 5 66 + BICOMP + 14 38 49 195 184 234 125 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\..\Source\d_timer.c - BICOMP - 86 + ICCARM + 145 - ICCARM - 84 + BICOMP + 107 - BICOMP - 79 197 208 57 181 62 + ICCARM + 14 38 49 195 56 55 - ICCARM - 79 197 208 57 181 62 + BICOMP + 14 38 49 195 56 55 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\d_usb.c - BICOMP - 105 + ICCARM + 171 - ICCARM - 81 + BICOMP + 89 - BICOMP - 79 197 208 57 74 11 + ICCARM + 14 38 49 195 77 53 - ICCARM - 79 197 208 57 74 11 + BICOMP + 14 38 49 195 77 53 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\m_sched.c - BICOMP - 93 + ICCARM + 96 - ICCARM - 98 + BICOMP + 144 - BICOMP - 79 197 208 57 213 176 211 235 + ICCARM + 14 57 38 49 195 182 69 54 17 72 15 20 34 1 47 64 6 48 239 193 19 - ICCARM - 79 197 208 57 213 176 211 235 + BICOMP + 14 57 38 49 195 182 69 54 17 72 15 20 34 1 47 64 6 48 239 193 19 - $PROJ_DIR$\..\..\Source\d_ioctrl.c + $PROJ_DIR$\..\..\Source\c_button.c - BICOMP + ICCARM 158 - ICCARM - 139 + BICOMP + 135 - BICOMP - 13 75 67 42 6 12 72 79 197 208 57 191 52 + ICCARM + 14 57 72 15 7 - ICCARM - 13 75 67 55 42 6 12 72 79 197 208 57 191 52 + BICOMP + 14 57 72 15 7 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\Include\Cstartup.s79 - BICOMP - 163 - - - ICCARM - 152 + AARM + 172 - BICOMP - 79 216 197 208 57 177 227 13 75 67 42 6 12 72 202 224 185 187 200 220 71 8 175 209 - - - ICCARM - 79 216 197 208 57 177 227 13 75 67 55 42 6 12 72 202 224 185 187 200 220 71 8 175 209 + AARM + 51 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c - BICOMP - 134 + ICCARM + 106 - ICCARM - 87 + BICOMP + 142 - BICOMP - 79 197 208 57 60 239 + ICCARM + 192 - ICCARM - 79 197 208 57 60 239 + BICOMP + 192 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\d_bt.c - BICOMP - 133 + ICCARM + 109 - ICCARM - 126 + BICOMP + 168 - BICOMP - 79 197 208 57 39 196 + ICCARM + 14 57 38 49 195 29 2 174 11 233 206 181 201 173 238 - ICCARM - 79 197 208 57 39 196 + BICOMP + 14 57 38 49 195 29 2 174 11 233 181 201 173 238 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_button.c - BICOMP - 124 + ICCARM + 189 - ICCARM - 143 + BICOMP + 98 - BICOMP - 79 197 208 57 44 68 121 + ICCARM + 14 38 49 195 7 232 - ICCARM - 79 197 208 57 44 68 121 + BICOMP + 14 38 49 195 7 232 - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\d_display.c - XLINK - 130 135 160 + ICCARM + 87 - - - - $PROJ_DIR$\..\..\Source\d_led.c - - ICCARM + BICOMP 85 ICCARM - 79 197 208 57 96 165 + 14 38 49 195 22 179 + + + BICOMP + 14 38 49 195 22 179 - $PROJ_DIR$\..\Object\d_display.s + $PROJ_DIR$\..\..\Source\d_hispeed.c - AARM - 84 + ICCARM + 80 - - - - $PROJ_DIR$\..\Object\d_button.s - - AARM - 173 + BICOMP + 115 - - - $PROJ_DIR$\..\Object\d_ioctrl.s - + - AARM - 139 + ICCARM + 14 38 49 195 10 83 - - - - $PROJ_DIR$\..\Object\d_output.s - - AARM - 126 + BICOMP + 14 38 49 195 10 83 - + - $PROJ_DIR$\..\Object\d_hispeed.s + $PROJ_DIR$\..\..\Source\d_input.c - AARM - 81 + ICCARM + 88 - - - - $PROJ_DIR$\..\Object\c_input.s - - AARM - 157 + BICOMP + 112 - - - $PROJ_DIR$\..\Object\c_output.s - + - AARM - 161 + ICCARM + 14 38 49 195 54 17 52 76 - - - - $PROJ_DIR$\..\Object\d_usb.s - - AARM - 168 + BICOMP + 14 38 49 195 54 17 52 76 - + - $PROJ_DIR$\..\Object\d_loader.s + $PROJ_DIR$\..\..\Source\d_ioctrl.c - AARM - 152 + ICCARM + 143 - - - - $PROJ_DIR$\..\Object\c_cmd.s - - AARM - 123 + BICOMP + 162 - - - $PROJ_DIR$\..\Object\c_loader.s - + - AARM - 129 + ICCARM + 174 11 233 206 181 201 173 238 14 38 49 195 32 4 + + + BICOMP + 174 11 233 181 201 173 238 14 38 49 195 32 4 - + - $PROJ_DIR$\..\Object\Cstartup_SAM7.s + $PROJ_DIR$\..\..\Source\c_display.c - AARM - 89 + ICCARM + 123 - - - - $PROJ_DIR$\..\Object\c_sound.s - - AARM - 162 + BICOMP + 150 - - - $PROJ_DIR$\..\Object\c_lowspeed.s - + - AARM - 83 + ICCARM + 174 11 233 206 181 201 173 238 14 57 175 1 22 - - - - $PROJ_DIR$\..\Object\c_comm.s - - AARM - 144 + BICOMP + 174 11 233 181 201 173 238 14 57 175 1 22 - + - $PROJ_DIR$\..\Object\d_lowspeed.s + $PROJ_DIR$\..\..\Source\c_input.c - AARM - 87 + ICCARM + 161 - - - - $PROJ_DIR$\..\Object\d_sound.s - - AARM - 143 + BICOMP + 155 - - - $PROJ_DIR$\..\Object\c_display.s - + - AARM - 120 + ICCARM + 14 57 54 17 52 66 13 174 11 233 206 181 201 173 238 - + + BICOMP + 14 57 54 17 52 66 13 174 11 233 181 201 173 238 + + - $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\..\Source\c_ioctrl.c - XLINK - 135 160 + ICCARM + 160 + + + BICOMP + 146 - XLINK - 112 169 89 154 123 144 120 157 156 129 83 161 162 172 90 173 84 81 98 139 152 87 126 143 141 168 106 145 + ICCARM + 14 57 199 193 32 + + + BICOMP + 14 57 199 193 32 - $PROJ_DIR$\..\Object\m_sched.s + $PROJ_DIR$\..\..\Source\c_loader.c - AARM - 106 + ICCARM + 133 + + + BICOMP + 136 + + + ICCARM + 14 57 13 199 18 20 174 11 233 206 181 201 173 238 + + + BICOMP + 14 57 13 199 18 20 174 11 233 181 201 173 238 + + - $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c ICCARM - 92 + 103 + + + BICOMP + 120 ICCARM - 79 216 115 137 96 + 14 57 24 17 47 177 + + + BICOMP + 14 57 24 17 47 177 - $PROJ_DIR$\..\Object\c_ui.s + $PROJ_DIR$\..\..\Source\c_output.c - AARM - 172 + ICCARM + 165 + + + BICOMP + 169 - - - $PROJ_DIR$\..\Object\LMS_ARM.pbd - BILINK - 146 131 104 149 159 151 142 132 118 166 128 171 164 108 86 105 93 158 163 134 133 124 88 99 140 + ICCARM + 74 11 233 206 181 201 173 238 178 14 57 66 64 5 175 + + + BICOMP + 74 11 233 181 201 173 238 178 14 57 66 64 5 175 - $PROJ_DIR$\..\Object\d_timer.s + $PROJ_DIR$\..\..\Source\c_sound.c - AARM - 141 + ICCARM + 166 - - - - $PROJ_DIR$\..\Object\c_ioctrl.s - - AARM - 156 + BICOMP + 132 - - - $PROJ_DIR$\..\Object\c_button.s - + - AARM - 154 + ICCARM + 41 11 233 206 181 201 173 238 174 14 57 35 13 34 184 - - - - $PROJ_DIR$\..\Object\d_bt.s - - AARM - 90 + BICOMP + 41 11 233 181 201 173 238 174 14 57 35 13 34 184 - + - $PROJ_DIR$\..\Object\d_input.s + $PROJ_DIR$\..\..\Source\c_ui.c - AARM - 98 + ICCARM + 188 + + + BICOMP + 187 + + + ICCARM + 74 11 233 206 181 201 173 238 174 43 65 26 28 41 61 237 200 16 50 14 57 60 19 38 49 195 175 13 15 35 17 66 199 239 33 24 70 62 9 191 71 73 63 180 59 204 39 196 183 79 23 205 203 194 67 197 8 58 190 3 176 46 31 236 12 202 198 27 36 42 40 108 44 21 45 25 213 75 30 78 + + + BICOMP + 74 11 233 181 201 173 238 174 43 65 26 28 41 61 237 200 16 50 14 57 60 19 38 49 195 175 13 15 35 17 66 199 239 33 24 70 62 9 191 71 73 63 180 59 204 39 196 183 79 23 205 203 194 67 197 8 58 190 3 176 46 31 236 12 202 198 27 36 42 40 108 44 21 45 25 213 75 30 78 + + Flash Debug - $PROJ_DIR$\..\..\Source\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_usb.c - $PROJ_DIR$\..\..\Source\d_button.h - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_button.c - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.iom - $PROJ_DIR$\..\..\Source\d_hispeed.r - $TOOLKIT_DIR$\inc\DLib_Threads.h - $TOOLKIT_DIR$\inc\string.h $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\..\Source\d_timer.c - $PROJ_DIR$\..\..\Source\c_display.c - $PROJ_DIR$\..\..\Source\c_input.c - $PROJ_DIR$\..\..\Source\c_ioctrl.c - $PROJ_DIR$\..\..\Source\c_loader.c - $PROJ_DIR$\..\..\Source\c_lowspeed.c - $PROJ_DIR$\..\..\Source\c_output.c - $PROJ_DIR$\..\..\Source\c_sound.c - $PROJ_DIR$\..\..\Source\c_ui.c - $PROJ_DIR$\..\Include\Cstartup.s79 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c - $PROJ_DIR$\..\..\Source\d_bt.c - $PROJ_DIR$\..\..\Source\d_button.c - $PROJ_DIR$\..\..\Source\d_display.c - $PROJ_DIR$\..\..\Source\d_hispeed.c - $PROJ_DIR$\..\..\Source\d_input.c - $PROJ_DIR$\..\..\Source\d_ioctrl.c - $PROJ_DIR$\..\..\Source\d_loader.c - $PROJ_DIR$\..\..\Source\d_lowspeed.c - $PROJ_DIR$\..\..\Source\d_output.c - $PROJ_DIR$\..\..\Source\d_sound.c - $PROJ_DIR$\..\..\Source\c_display.iom - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\d_output.h - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt - $PROJ_DIR$\..\..\Source\d_sound.h - $PROJ_DIR$\..\..\Source\Step.txt - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.h $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\..\Source\d_bt.r $PROJ_DIR$\..\..\Source\RCXintro_12.txt $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\RCXintro_5.txt - $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $PROJ_DIR$\..\Lib\dl4tptinl8n.h - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_button.h $PROJ_DIR$\..\..\Source\RCXintro_9.txt $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\d_button.r - $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\..\..\Source\d_sound.r - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $TOOLKIT_DIR$\inc\xlocale_c.h - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\..\..\Source\c_cmd.iom $PROJ_DIR$\..\..\Source\d_hispeed.h $TOOLKIT_DIR$\inc\yvals.h + $PROJ_DIR$\..\..\Source\Status.txt + $PROJ_DIR$\..\..\Source\c_loader.iom + $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\c_button.iom + $TOOLKIT_DIR$\inc\time.h + $PROJ_DIR$\..\..\Source\c_input.iom + $PROJ_DIR$\..\..\Source\d_loader.h + $PROJ_DIR$\..\..\Source\c_ui.h + $PROJ_DIR$\..\..\Source\c_loader.h + $PROJ_DIR$\..\..\Source\Submenu05.rms + $PROJ_DIR$\..\..\Source\d_display.h + $PROJ_DIR$\..\..\Source\RCXintro_3.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.iom + $PROJ_DIR$\..\..\Source\Submenu07.rms + $TOOLKIT_DIR$\inc\xtls.h + $PROJ_DIR$\..\..\Source\Ui.txt + $TOOLKIT_DIR$\inc\xmtx.h + $PROJ_DIR$\..\..\Source\d_bt.h + $PROJ_DIR$\..\..\Source\Test1.txt + $PROJ_DIR$\..\..\Source\RCXintro_15.txt + $PROJ_DIR$\..\..\Source\d_ioctrl.h + $PROJ_DIR$\..\..\Source\c_comm.iom + $PROJ_DIR$\..\..\Source\c_sound.h + $PROJ_DIR$\..\..\Source\c_sound.iom + $PROJ_DIR$\..\..\Source\Mainmenu.rms + $PROJ_DIR$\..\..\Source\d_output.r + $PROJ_DIR$\..\..\Source\m_sched.h + $PROJ_DIR$\..\..\Source\Info.txt + $PROJ_DIR$\..\..\Source\Submenu02.rms + $TOOLKIT_DIR$\inc\stdlib.h + $PROJ_DIR$\..\..\Source\Submenu01.rms + $TOOLKIT_DIR$\inc\ctype.h + $PROJ_DIR$\..\..\Source\Submenu04.rms + $PROJ_DIR$\..\..\Source\Submenu06.rms + $PROJ_DIR$\..\..\Source\RCXintro_14.txt + $PROJ_DIR$\..\..\Source\c_lowspeed.h + $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h + $PROJ_DIR$\..\Include\sam7s256.h + $TOOLKIT_DIR$\inc\wchar.h + $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h + $PROJ_DIR$\..\..\Source\d_input.h + $PROJ_DIR$\..\..\Source\d_usb.r + $PROJ_DIR$\..\..\Source\c_input.h + $PROJ_DIR$\..\..\Source\d_timer.r + $PROJ_DIR$\..\..\Source\d_timer.h + $PROJ_DIR$\..\..\Source\modules.h + $PROJ_DIR$\..\..\Source\RCXintro_10.txt + $PROJ_DIR$\..\..\Source\Wait.txt + $PROJ_DIR$\..\..\Source\c_ui.iom + $TOOLKIT_DIR$\inc\xlocaleuse.h + $PROJ_DIR$\..\..\Source\LowBattery.txt + $PROJ_DIR$\..\..\Source\Port.txt + $PROJ_DIR$\..\..\Source\c_output.h + $TOOLKIT_DIR$\inc\xlocale.h + $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\RCXintro_7.txt + $PROJ_DIR$\..\..\Source\d_loader.r + $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\Running.txt + $TOOLKIT_DIR$\inc\stdio.h + $PROJ_DIR$\..\..\Source\BtTest.inc + $PROJ_DIR$\..\..\Source\d_input.r + $PROJ_DIR$\..\..\Source\d_usb.h + $PROJ_DIR$\..\..\Source\Test2.txt + $PROJ_DIR$\..\..\Source\RCXintro_2.txt + $PROJ_DIR$\..\Object\d_hispeed.r79 + $PROJ_DIR$\..\..\Source\d_lowspeed.r $PROJ_DIR$\..\..\Source\d_led.c - $PROJ_DIR$\..\..\Source\Status.txt - $PROJ_DIR$\..\..\Source\c_loader.iom - $PROJ_DIR$\..\..\Source\stdconst.h + $PROJ_DIR$\..\..\Source\d_hispeed.r $TOOLKIT_DIR$\inc\limits.h - $PROJ_DIR$\..\Object\d_hispeed.r79 - $PROJ_DIR$\..\Object\c_lowspeed.r79 + $PROJ_DIR$\..\Object\d_display.pbi $PROJ_DIR$\..\Object\d_display.r79 + $PROJ_DIR$\..\Object\d_input.r79 + $PROJ_DIR$\..\Object\d_usb.pbi + $PROJ_DIR$\..\Object\c_cmd.pbi + $PROJ_DIR$\..\Object\m_sched.r79 + $PROJ_DIR$\..\Object\d_button.pbi + $PROJ_DIR$\..\..\Source\c_led.iom + $PROJ_DIR$\at91SAM7S256_Remap.xcl + $PROJ_DIR$\..\Object\c_lowspeed.r79 $PROJ_DIR$\..\Object\d_led.r79 - $PROJ_DIR$\..\Object\d_display.pbi $PROJ_DIR$\..\Object\d_lowspeed.r79 - $PROJ_DIR$\..\Object\d_timer.pbi $PROJ_DIR$\..\Object\Cstartup_SAM7.r79 + $PROJ_DIR$\..\Object\d_timer.pbi + $PROJ_DIR$\..\..\Source\Submenu03.rms $PROJ_DIR$\..\Object\d_bt.r79 $PROJ_DIR$\..\Object\c_led.r79 $PROJ_DIR$\..\Object\d_input.pbi - $PROJ_DIR$\..\..\Source\Submenu03.rms $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\Object\d_input.r79 - $PROJ_DIR$\..\Object\d_usb.pbi - $PROJ_DIR$\..\Object\c_cmd.pbi $PROJ_DIR$\..\Object\d_hispeed.pbi - $PROJ_DIR$\..\Object\m_sched.r79 - $PROJ_DIR$\..\Object\d_button.pbi - $PROJ_DIR$\at91SAM7S256_Remap.xcl - $PROJ_DIR$\..\..\Source\c_led.iom $TOOLKIT_DIR$\inc\ymath.h $PROJ_DIR$\..\Object\c_lowspeed.pbi $TOOLKIT_DIR$\inc\math.h $PROJ_DIR$\..\Object\c_display.r79 + $PROJ_DIR$\..\Object\d_lowspeed.pbi $PROJ_DIR$\..\..\Source\d_sound_adpcm.r $PROJ_DIR$\..\Object\c_cmd.r79 $PROJ_DIR$\..\Object\d_sound.pbi $PROJ_DIR$\..\Object\d_output.r79 $PROJ_DIR$\..\Object\c_sound.pbi $PROJ_DIR$\..\Object\c_loader.r79 - $PROJ_DIR$\..\..\Source\d_motor.c - $PROJ_DIR$\..\..\Source\d_net.c - $PROJ_DIR$\..\..\Source\d_avrcomm.h - $PROJ_DIR$\..\..\Source\c_hispeed.h - $PROJ_DIR$\..\..\Source\c_hispeed.iom - $PROJ_DIR$\..\Object\c_net.r79 - $PROJ_DIR$\..\..\Source\c_motor.c $PROJ_DIR$\..\Object\LMS_ARM.d79 $PROJ_DIR$\..\Object\c_button.pbi $PROJ_DIR$\..\Object\c_loader.pbi $PROJ_DIR$\..\Object\d_output.pbi - $PROJ_DIR$\..\Object\d_lowspeed.pbi - $PROJ_DIR$\..\Object\LMS_ARM.map $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\Object\LMS_ARM.map $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi $PROJ_DIR$\..\Object\d_ioctrl.r79 $PROJ_DIR$\..\Object\m_sched.pbi $PROJ_DIR$\..\Object\d_timer.r79 @@ -2081,7 +2078,7 @@ $PROJ_DIR$\..\Object\d_sound.r79 $PROJ_DIR$\..\Object\c_comm.r79 $PROJ_DIR$\..\Lib\dl4tptinl8n.r79 - $PROJ_DIR$\..\Object\Cstartup_SAM7.pbi + $PROJ_DIR$\..\Object\c_display.pbi $PROJ_DIR$\..\Object\LMS_ARM.pbd $PROJ_DIR$\..\Object\c_comm.pbi $PROJ_DIR$\..\Object\c_input.pbi @@ -2090,20 +2087,39 @@ $PROJ_DIR$\..\Object\c_ioctrl.r79 $PROJ_DIR$\..\Object\c_input.r79 $PROJ_DIR$\..\Object\d_ioctrl.pbi - $PROJ_DIR$\..\Object\c_display.pbi + $PROJ_DIR$\..\..\Source\d_led.r $PROJ_DIR$\..\Object\c_output.r79 $PROJ_DIR$\..\Object\c_sound.r79 $PROJ_DIR$\..\Object\d_loader.pbi $PROJ_DIR$\..\Object\d_bt.pbi - $PROJ_DIR$\..\..\Source\d_led.r + $PROJ_DIR$\..\..\Source\d_motor.c $PROJ_DIR$\..\Object\c_output.pbi $PROJ_DIR$\..\Object\d_usb.r79 $PROJ_DIR$\..\Object\Cstartup.r79 + $TOOLKIT_DIR$\inc\DLib_Threads.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\Ok.txt + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\c_comm.c $PROJ_DIR$\..\Object\c_ui.pbi $PROJ_DIR$\..\Object\c_ui.r79 $PROJ_DIR$\..\Object\d_button.r79 - $PROJ_DIR$\..\Object\c_avrcomm.r79 + $PROJ_DIR$\..\..\Source\d_net.c + $PROJ_DIR$\..\..\Source\c_hispeed.h + $PROJ_DIR$\..\..\Source\c_hispeed.iom + $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\Object\c_net.r79 $PROJ_DIR$\..\..\Source\c_net.c + $PROJ_DIR$\..\Object\c_avrcomm.r79 + $PROJ_DIR$\..\..\Source\c_hispeed.c $PROJ_DIR$\..\..\Source\d_sensor.r $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c $PROJ_DIR$\..\Object\d_motor.r79 @@ -2114,16 +2130,17 @@ $PROJ_DIR$\..\Object\c_bt.r79 $PROJ_DIR$\..\Object\c_usb.r79 $PROJ_DIR$\..\..\include\AT91SAM7S64.h - $PROJ_DIR$\..\..\Source\c_hispeed.c + $PROJ_DIR$\..\..\Source\c_sensor.c $PROJ_DIR$\SrcIAR\Cstartup.s79 $PROJ_DIR$\..\Object\LMS_ARM.sim - $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_bt.c $PROJ_DIR$\..\Include\ioat91sam7s64.h $PROJ_DIR$\..\..\Source\main.c $PROJ_DIR$\..\..\Source\c_motor.h $PROJ_DIR$\..\..\Source\c_net.h $PROJ_DIR$\..\Object\d_avrcomm.r79 $PROJ_DIR$\..\..\Source\d_net.r + $PROJ_DIR$\..\..\Source\d_avrcomm.h $PROJ_DIR$\..\..\Source\d_avrcomm.r $PROJ_DIR$\..\..\Source\c_usb.h $PROJ_DIR$\..\..\Source\c_motor.iom @@ -2133,969 +2150,952 @@ $PROJ_DIR$\..\..\Source\d_avrcomm.c $PROJ_DIR$\..\Include\AT91SAM7S64.h $PROJ_DIR$\Flash_Debug\Obj\Cstartup_SAM7.r79 - $PROJ_DIR$\..\..\Source\c_bt.c + $PROJ_DIR$\..\..\Source\c_avrcomm.h $PROJ_DIR$\..\Include\lib_AT91SAM7S64.h $PROJ_DIR$\Flash_Debug\Obj\main.r79 - $PROJ_DIR$\..\..\Source\c_avrcomm.h + $PROJ_DIR$\..\..\Source\c_avrcomm.c $PROJ_DIR$\Flash_Debug\Obj\Cstartup.r79 $PROJ_DIR$\..\..\include\lib_AT91SAM7S64.h - $PROJ_DIR$\..\..\Source\c_avrcomm.c - $PROJ_DIR$\SrcIAR\Board.h $PROJ_DIR$\..\..\Source\d_motor.h + $PROJ_DIR$\SrcIAR\Board.h + $PROJ_DIR$\..\..\Source\c_sensor.h $PROJ_DIR$\..\..\Source\d_motor.r $PROJ_DIR$\..\..\Source\d_sensor.c $PROJ_DIR$\..\..\Source\d_sensor.h $PROJ_DIR$\..\..\Source\c_sensor.iom $PROJ_DIR$\..\src\main.c - $PROJ_DIR$\..\..\Source\c_sensor.h $PROJ_DIR$\..\..\Source\c_usb.c + $PROJ_DIR$\..\Object\c_hispeed.r79 $PROJ_DIR$\..\Object\main.r79 $PROJ_DIR$\..\Object\c_sensor.r79 - $PROJ_DIR$\..\Object\c_hispeed.r79 $PROJ_DIR$\..\..\Source\c_bt.iom $PROJ_DIR$\..\Object\d_sensor.r79 - $PROJ_DIR$\..\..\Source\c_button.iom - $TOOLKIT_DIR$\inc\time.h - $PROJ_DIR$\..\..\Source\c_input.iom - $PROJ_DIR$\..\..\Source\d_loader.h - $PROJ_DIR$\..\..\Source\c_ui.h - $PROJ_DIR$\..\..\Source\c_loader.h - $PROJ_DIR$\..\..\Source\Submenu05.rms - $PROJ_DIR$\..\..\Source\d_display.h - $PROJ_DIR$\..\..\Source\RCXintro_3.txt - $PROJ_DIR$\..\..\Source\c_lowspeed.iom - $PROJ_DIR$\..\..\Source\Submenu07.rms - $TOOLKIT_DIR$\inc\xtls.h - $PROJ_DIR$\..\..\Source\Ui.txt - $TOOLKIT_DIR$\inc\xmtx.h - $PROJ_DIR$\..\..\Source\d_bt.h - $PROJ_DIR$\..\..\Source\Test1.txt - $PROJ_DIR$\..\..\Source\RCXintro_15.txt - $PROJ_DIR$\..\..\Source\d_ioctrl.h - $PROJ_DIR$\..\..\Source\c_comm.iom - $PROJ_DIR$\..\..\Source\c_sound.h - $PROJ_DIR$\..\..\Source\c_sound.iom - $PROJ_DIR$\..\..\Source\Mainmenu.rms - $PROJ_DIR$\..\..\Source\d_output.r - $PROJ_DIR$\..\..\Source\m_sched.h - $PROJ_DIR$\..\..\Source\Info.txt - $PROJ_DIR$\..\..\Source\Submenu02.rms - $TOOLKIT_DIR$\inc\stdlib.h - $PROJ_DIR$\..\..\Source\Submenu01.rms - $TOOLKIT_DIR$\inc\ctype.h - $PROJ_DIR$\..\..\Source\Submenu04.rms - $PROJ_DIR$\..\..\Source\Submenu06.rms - $PROJ_DIR$\..\..\Source\RCXintro_14.txt - $PROJ_DIR$\..\..\Source\c_lowspeed.h - $PROJ_DIR$\..\..\Source\c_cmd_bytecodes.h - $PROJ_DIR$\..\Include\sam7s256.h - $TOOLKIT_DIR$\inc\wchar.h - $PROJ_DIR$\..\Include\AT91SAM7S256_inc.h - $PROJ_DIR$\..\..\Source\d_input.h - $PROJ_DIR$\..\..\Source\d_usb.r - $PROJ_DIR$\..\..\Source\c_input.h - $PROJ_DIR$\..\..\Source\d_timer.r - $PROJ_DIR$\..\..\Source\d_timer.h - $PROJ_DIR$\..\..\Source\modules.h - $PROJ_DIR$\..\..\Source\RCXintro_10.txt - $PROJ_DIR$\..\..\Source\Wait.txt - $PROJ_DIR$\..\..\Source\c_ui.iom - $TOOLKIT_DIR$\inc\xlocaleuse.h - $PROJ_DIR$\..\..\Source\LowBattery.txt - $PROJ_DIR$\..\..\Source\Port.txt - $PROJ_DIR$\..\..\Source\c_output.h - $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt - $PROJ_DIR$\..\..\Source\c_output.iom - $PROJ_DIR$\..\..\Source\d_loader.r - $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\Running.txt - $TOOLKIT_DIR$\inc\stdio.h - $PROJ_DIR$\..\..\Source\BtTest.inc - $PROJ_DIR$\..\..\Source\d_input.r - $PROJ_DIR$\..\..\Source\d_usb.h - $PROJ_DIR$\..\..\Source\Test2.txt - $PROJ_DIR$\..\..\Source\RCXintro_2.txt - $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $PROJ_DIR$\..\Lib\dl4tptinl8n.h + $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$\..\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\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$\..\..\Source\d_button.r + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_cmd.c - BICOMP - 128 + ICCARM + 111 - ICCARM - 98 + BICOMP + 89 - BICOMP - 79 249 230 241 57 40 261 246 209 264 207 212 226 49 239 256 3 240 73 48 211 + ICCARM + 14 57 272 66 17 13 60 35 15 151 33 24 38 49 228 6 48 56 74 11 266 239 157 234 149 271 150 41 107 105 84 268 - ICCARM - 79 249 230 241 57 40 261 246 209 264 207 212 226 49 239 256 3 240 73 48 211 + BICOMP + 14 57 272 66 17 13 60 35 15 151 33 24 38 49 228 6 48 56 74 11 266 157 234 149 271 150 41 107 105 84 268 - $PROJ_DIR$\..\..\Source\d_usb.c + [ROOT_NODE] - BICOMP - 95 + XLINK + 116 121 185 + + + + $PROJ_DIR$\..\..\Source\d_led.c + ICCARM - 150 + 95 - - BICOMP - 79 230 241 57 269 245 - ICCARM - 79 230 241 57 269 245 + 14 38 49 228 103 140 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\Object\LMS_ARM.d79 - BICOMP - 120 - - - ICCARM - 139 + XLINK + 121 185 - BICOMP - 79 249 264 207 5 - - - ICCARM - 79 249 264 207 5 + XLINK + 93 148 97 136 111 129 108 138 137 115 94 141 142 163 100 164 86 80 87 124 135 96 113 128 126 147 90 130 - $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\..\Source\c_led.c - - BICOMP - 96 - ICCARM - 107 + 101 - - BICOMP - 79 249 73 259 209 78 252 227 207 37 225 216 230 241 57 3 240 248 266 75 67 42 6 12 72 13 233 104 102 80 69 - ICCARM - 79 249 73 259 209 78 252 227 207 37 225 216 230 241 57 3 240 248 266 75 67 55 42 6 12 72 13 233 104 102 80 69 + 14 57 92 120 103 - $PROJ_DIR$\..\..\Source\c_comm.c - + $PROJ_DIR$\..\Object\LMS_ARM.pbd + - BICOMP - 136 + BILINK + 123 117 89 133 131 134 127 118 106 146 114 162 144 91 85 104 102 139 143 109 119 112 98 88 125 + + + + $PROJ_DIR$\..\..\Source\d_motor.c + ICCARM - 132 + 175 - - BICOMP - 79 249 225 78 10 252 73 37 261 269 74 221 13 75 67 42 6 12 72 235 257 218 220 233 253 71 8 208 242 - ICCARM - 79 249 225 78 10 252 73 37 261 269 74 221 13 75 67 55 42 6 12 72 235 257 218 220 233 253 71 8 208 242 + 14 38 49 187 209 212 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\..\..\Source\c_comm.c - - BICOMP - 87 - ICCARM 129 - - BICOMP - 79 230 241 57 248 247 + 133 + + ICCARM - 79 230 241 57 248 247 + 14 57 33 13 232 60 272 151 69 77 10 29 150 11 266 239 157 234 149 271 43 65 26 28 41 61 270 233 16 50 + + + BICOMP + 14 57 33 13 232 60 272 151 69 77 10 29 150 11 266 157 234 149 271 43 65 26 28 41 61 270 233 16 50 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\..\Source\d_net.c - - BICOMP - 143 - ICCARM - 105 + 176 - - BICOMP - 13 75 67 42 6 12 72 79 249 37 49 214 - ICCARM - 13 75 67 55 42 6 12 72 79 249 37 49 214 + 14 38 49 187 197 192 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\c_motor.c - - BICOMP - 137 - ICCARM - 141 + 178 - - BICOMP - 79 249 246 209 244 259 78 13 75 67 42 6 12 72 - ICCARM - 79 249 246 209 244 259 78 13 75 67 55 42 6 12 72 + 14 57 196 189 209 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\c_net.c - - BICOMP - 130 - ICCARM - 140 + 169 - - BICOMP - 79 249 10 48 224 - ICCARM - 79 249 10 48 224 + 14 190 197 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\c_hispeed.c - - BICOMP - 121 - ICCARM - 111 + 218 - - BICOMP - 79 249 78 10 210 212 13 75 67 42 6 12 72 - ICCARM - 79 249 78 10 210 212 13 75 67 55 42 6 12 72 + 14 57 167 166 10 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c - - BICOMP - 103 - ICCARM - 82 + 202 - - BICOMP - 79 249 216 209 239 60 - ICCARM - 79 249 216 209 239 60 + 210 182 208 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\c_sensor.c - - BICOMP - 149 - ICCARM - 144 + 220 - - BICOMP - 266 75 67 42 6 12 72 61 79 249 259 256 39 37 - ICCARM - 266 75 67 55 42 6 12 72 61 79 249 259 256 39 37 + 14 57 215 211 214 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\SrcIAR\Cstartup.s79 - BICOMP - 110 - - - ICCARM - 145 + AARM + 207 - BICOMP - 233 75 67 42 6 12 72 13 79 249 227 78 226 44 - - - ICCARM - 233 75 67 55 42 6 12 72 13 79 249 227 78 226 44 + AARM + 179 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\c_bt.c - - BICOMP - 152 - ICCARM - 153 + 180 - - BICOMP - 266 75 67 42 6 12 72 13 235 257 218 220 233 253 71 8 208 242 79 249 252 211 230 241 57 37 78 207 227 209 259 10 73 225 216 262 254 65 263 265 255 63 251 56 231 59 77 2 9 219 228 234 232 92 236 213 237 217 0 267 222 270 - ICCARM - 266 75 67 55 42 6 12 72 13 235 257 218 220 233 253 71 8 208 242 79 249 252 211 230 241 57 37 78 207 227 209 259 10 73 225 216 262 254 65 45 263 265 255 63 251 56 231 59 41 271 215 54 53 47 258 58 64 250 43 51 38 238 223 70 77 2 9 219 228 234 232 92 236 213 237 217 0 267 222 270 + 14 57 221 198 29 272 - $PROJ_DIR$\..\Include\Cstartup.s79 + $PROJ_DIR$\..\..\Source\main.c - AARM - 151 + ICCARM + 219 - AARM - 243 + ICCARM + 177 201 204 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_avrcomm.c - - BICOMP - 134 - ICCARM - 88 + 191 - - BICOMP - 46 - ICCARM - 46 + 14 38 49 187 193 194 - $PROJ_DIR$\..\..\Source\d_bt.c + $PROJ_DIR$\..\..\Source\c_avrcomm.c - - BICOMP - 147 - ICCARM - 89 + 171 - - BICOMP - 79 249 230 241 57 221 50 13 75 67 42 6 12 72 - ICCARM - 79 249 230 241 57 221 50 13 75 67 55 42 6 12 72 + 14 203 193 - $PROJ_DIR$\..\..\Source\d_button.c + $PROJ_DIR$\..\..\Source\d_sensor.c - - BICOMP - 99 - ICCARM - 154 + 222 - - BICOMP - 79 230 241 57 5 66 - ICCARM - 79 230 241 57 5 66 + 14 38 49 187 214 173 - $PROJ_DIR$\..\..\Source\d_display.c + $PROJ_DIR$\..\src\main.c - - BICOMP - 85 - ICCARM - 83 + 205 - - BICOMP - 79 230 241 57 214 62 - ICCARM - 79 230 241 57 214 62 + 210 182 208 - $PROJ_DIR$\..\..\Source\d_hispeed.c + $PROJ_DIR$\..\..\Source\c_usb.c - - BICOMP - 97 - ICCARM - 81 + 181 - - BICOMP - 79 230 241 57 74 11 - ICCARM - 79 230 241 57 74 11 + 14 57 199 195 77 - $PROJ_DIR$\..\..\Source\d_input.c + $PROJ_DIR$\..\..\Source\d_loader.c - BICOMP - 91 + ICCARM + 135 - ICCARM - 94 + BICOMP + 143 - BICOMP - 79 230 241 57 246 209 244 268 + ICCARM + 14 57 38 49 228 18 68 150 11 266 239 157 234 149 271 43 65 26 28 41 61 270 233 16 50 - ICCARM - 79 230 241 57 246 209 244 268 + BICOMP + 14 57 38 49 228 18 68 150 11 266 157 234 149 271 43 65 26 28 41 61 270 233 16 50 - $PROJ_DIR$\..\..\Source\d_ioctrl.c - - - BICOMP - 142 - + $PROJ_DIR$\..\..\Source\d_lowspeed.c + ICCARM - 127 + 96 - - BICOMP - 13 75 67 42 6 12 72 79 230 241 57 224 52 + 109 + + ICCARM - 13 75 67 55 42 6 12 72 79 230 241 57 224 52 + 14 38 49 228 153 81 + + + BICOMP + 14 38 49 228 153 81 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\d_output.c - BICOMP - 146 + ICCARM + 113 - ICCARM - 138 + BICOMP + 119 - BICOMP - 79 249 230 241 57 210 260 13 75 67 42 6 12 72 235 257 218 220 233 253 71 8 208 242 + ICCARM + 14 38 49 228 5 37 - ICCARM - 79 249 230 241 57 210 260 13 75 67 55 42 6 12 72 235 257 218 220 233 253 71 8 208 242 + BICOMP + 14 38 49 228 5 37 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\d_sound.c - BICOMP - 123 + ICCARM + 128 - ICCARM - 86 + BICOMP + 112 - BICOMP - 79 230 241 57 60 272 + ICCARM + 14 38 49 228 160 267 110 - ICCARM - 79 230 241 57 60 272 + BICOMP + 14 38 49 228 160 267 110 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\d_timer.c - BICOMP - 122 + ICCARM + 126 - ICCARM - 109 + BICOMP + 98 - BICOMP - 79 230 241 57 39 229 + ICCARM + 14 38 49 228 56 55 - ICCARM - 79 230 241 57 39 229 + BICOMP + 14 38 49 228 56 55 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\d_usb.c - BICOMP - 108 + ICCARM + 147 - ICCARM - 131 + BICOMP + 88 - BICOMP - 79 230 241 57 44 68 106 + ICCARM + 14 38 49 228 77 53 - ICCARM - 79 230 241 57 44 68 106 + BICOMP + 14 38 49 228 77 53 - [ROOT_NODE] + $PROJ_DIR$\..\..\Source\m_sched.c - XLINK - 119 124 169 + ICCARM + 90 - - - - $PROJ_DIR$\..\..\Source\d_led.c - - ICCARM - 84 + BICOMP + 125 ICCARM - 79 230 241 57 93 148 + 14 57 38 49 228 158 69 54 17 72 15 20 34 1 47 64 6 48 272 226 19 + + + BICOMP + 14 57 38 49 228 158 69 54 17 72 15 20 34 1 47 64 6 48 272 226 19 - $PROJ_DIR$\..\..\Source\d_motor.c + $PROJ_DIR$\..\..\Source\c_button.c ICCARM - 159 + 136 + + + BICOMP + 117 ICCARM - 79 230 241 171 194 195 + 14 57 72 15 7 + + + BICOMP + 14 57 72 15 7 - $PROJ_DIR$\..\..\Source\d_net.c + $PROJ_DIR$\..\Include\Cstartup.s79 - ICCARM - 160 + AARM + 148 - ICCARM - 79 230 241 171 180 176 + AARM + 51 - $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\Include\Cstartup_SAM7.c ICCARM - 162 + 97 + + + BICOMP + 123 ICCARM - 79 249 179 173 194 + 225 + + + BICOMP + 225 - $PROJ_DIR$\..\Object\LMS_ARM.d79 + $PROJ_DIR$\..\..\Source\d_bt.c - XLINK - 124 169 + ICCARM + 100 + + + BICOMP + 144 - XLINK - 100 151 88 139 107 132 105 141 140 111 82 144 145 153 89 154 83 81 94 127 138 86 109 131 129 150 98 133 + ICCARM + 14 57 38 49 228 29 2 150 11 266 239 157 234 149 271 + + + BICOMP + 14 57 38 49 228 29 2 150 11 266 157 234 149 271 - $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\..\Source\d_button.c ICCARM - 90 + 164 + + + BICOMP + 91 ICCARM - 79 249 101 125 93 + 14 38 49 228 7 265 - - - - $PROJ_DIR$\..\Object\LMS_ARM.pbd - - BILINK - 134 120 96 136 143 137 130 121 103 149 110 152 147 99 85 97 91 142 146 123 122 108 87 95 128 + BICOMP + 14 38 49 228 7 265 - $PROJ_DIR$\..\..\Source\c_net.c + $PROJ_DIR$\..\..\Source\d_display.c ICCARM - 117 + 86 + + + BICOMP + 85 ICCARM - 79 174 180 + 14 38 49 228 22 155 + + + BICOMP + 14 38 49 228 22 155 - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\d_hispeed.c ICCARM - 185 + 80 + + + BICOMP + 104 ICCARM - 193 166 191 + 14 38 49 228 10 83 + + + BICOMP + 14 38 49 228 10 83 - $PROJ_DIR$\..\..\Source\c_hispeed.c + $PROJ_DIR$\..\..\Source\d_input.c ICCARM - 204 + 87 + + + BICOMP + 102 ICCARM - 79 249 116 115 74 + 14 38 49 228 54 17 52 76 + + + BICOMP + 14 38 49 228 54 17 52 76 - $PROJ_DIR$\SrcIAR\Cstartup.s79 + $PROJ_DIR$\..\..\Source\d_ioctrl.c - AARM - 190 + ICCARM + 124 + + + BICOMP + 139 - AARM - 163 + ICCARM + 150 11 266 239 157 234 149 271 14 38 49 228 32 4 + + + BICOMP + 150 11 266 157 234 149 271 14 38 49 228 32 4 - $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\..\..\Source\c_display.c ICCARM - 203 + 108 + + + BICOMP + 131 ICCARM - 79 249 198 200 197 + 150 11 266 239 157 234 149 271 14 57 151 1 22 + + + BICOMP + 150 11 266 157 234 149 271 14 57 151 1 22 - $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\Source\c_input.c ICCARM - 202 + 138 + + + BICOMP + 134 ICCARM - 161 184 187 + 14 57 54 17 52 66 13 150 11 266 239 157 234 149 271 + + + BICOMP + 14 57 54 17 52 66 13 150 11 266 157 234 149 271 - $PROJ_DIR$\..\..\Source\d_avrcomm.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c ICCARM - 175 + 137 + + + BICOMP + 127 ICCARM - 79 230 241 171 114 177 + 14 57 232 226 32 + + + BICOMP + 14 57 232 226 32 - $PROJ_DIR$\..\..\Source\c_bt.c + $PROJ_DIR$\..\..\Source\c_loader.c ICCARM - 164 + 115 + + + BICOMP + 118 ICCARM - 79 249 205 181 221 73 + 14 57 13 232 18 20 150 11 266 239 157 234 149 271 + + + BICOMP + 14 57 13 232 18 20 150 11 266 157 234 149 271 - $PROJ_DIR$\..\..\Source\c_avrcomm.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c ICCARM - 155 + 94 + + + BICOMP + 106 ICCARM - 79 189 114 + 14 57 24 17 47 153 + + + BICOMP + 14 57 24 17 47 153 - $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\c_output.c ICCARM - 206 + 141 + + + BICOMP + 146 ICCARM - 79 230 241 171 197 157 + 74 11 266 239 157 234 149 271 154 14 57 66 64 5 151 + + + BICOMP + 74 11 266 157 234 149 271 154 14 57 66 64 5 151 - $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\..\..\Source\c_sound.c ICCARM - 188 + 142 + + + BICOMP + 114 ICCARM - 193 166 191 + 41 11 266 239 157 234 149 271 150 14 57 35 13 34 160 + + + BICOMP + 41 11 266 157 234 149 271 150 14 57 35 13 34 160 - $PROJ_DIR$\..\..\Source\c_usb.c + $PROJ_DIR$\..\..\Source\c_ui.c ICCARM - 165 + 163 + + + BICOMP + 162 ICCARM - 79 249 182 178 269 + 74 11 266 239 157 234 149 271 150 43 65 26 28 41 61 270 233 16 50 14 57 60 19 38 49 228 151 13 15 35 17 66 232 272 33 24 70 62 9 224 71 73 63 156 59 237 39 229 159 79 23 238 236 227 67 230 8 58 223 3 152 46 31 269 12 235 231 27 36 42 40 99 44 21 45 25 246 75 30 78 + + + BICOMP + 74 11 266 157 234 149 271 150 43 65 26 28 41 61 270 233 16 50 14 57 60 19 38 49 228 151 13 15 35 17 66 232 272 33 24 70 62 9 71 73 63 156 59 237 39 229 12 235 231 27 36 42 40 99 44 21 45 25 246 75 30 78 @@ -3103,153 +3103,21 @@ RAM_Debug - $PROJ_DIR$\..\..\Source\Functions.inl - $PROJ_DIR$\..\..\Source\m_sched.c - $PROJ_DIR$\..\..\Source\Devices.txt - $PROJ_DIR$\..\..\Source\c_cmd.h - $PROJ_DIR$\..\..\Source\d_usb.c - $PROJ_DIR$\..\..\Source\d_button.h - $TOOLKIT_DIR$\inc\xencoding_limits.h - $PROJ_DIR$\..\..\Source\c_button.c - $TOOLKIT_DIR$\inc\xtinfo.h - $PROJ_DIR$\..\..\Source\Connections.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.iom - $PROJ_DIR$\..\..\Source\d_hispeed.r - $TOOLKIT_DIR$\inc\DLib_Threads.h - $TOOLKIT_DIR$\inc\string.h $PROJ_DIR$\..\..\Source\c_cmd.c - $PROJ_DIR$\..\..\Source\c_comm.c - $PROJ_DIR$\..\..\Source\d_timer.c - $PROJ_DIR$\..\..\Source\c_display.c - $PROJ_DIR$\..\..\Source\c_input.c - $PROJ_DIR$\..\..\Source\c_ioctrl.c - $PROJ_DIR$\..\..\Source\c_loader.c - $PROJ_DIR$\..\..\Source\c_lowspeed.c - $PROJ_DIR$\..\..\Source\c_output.c - $PROJ_DIR$\..\..\Source\c_sound.c - $PROJ_DIR$\..\..\Source\c_ui.c - $PROJ_DIR$\..\Include\Cstartup.s79 - $PROJ_DIR$\..\Include\Cstartup_SAM7.c - $PROJ_DIR$\..\..\Source\d_bt.c - $PROJ_DIR$\..\..\Source\d_button.c - $PROJ_DIR$\..\..\Source\d_display.c - $PROJ_DIR$\..\..\Source\d_hispeed.c - $PROJ_DIR$\..\..\Source\d_input.c - $PROJ_DIR$\..\..\Source\d_ioctrl.c - $PROJ_DIR$\..\..\Source\d_loader.c - $PROJ_DIR$\..\..\Source\d_lowspeed.c - $PROJ_DIR$\..\..\Source\d_output.c - $PROJ_DIR$\..\..\Source\d_sound.c - $PROJ_DIR$\..\..\Source\c_display.iom - $PROJ_DIR$\..\..\Source\RCXintro_13.txt - $PROJ_DIR$\..\..\Source\d_output.h - $PROJ_DIR$\..\Include\sam7s256.c - $PROJ_DIR$\..\..\Source\RCXintro_1.txt - $TOOLKIT_DIR$\inc\DLib_Product.h - $PROJ_DIR$\..\..\Source\RCXintro_11.txt - $PROJ_DIR$\..\..\Source\d_sound.h - $PROJ_DIR$\..\..\Source\Step.txt - $PROJ_DIR$\..\Include\AT91SAM7S256.h - $PROJ_DIR$\..\..\Source\RCXintro_6.txt - $PROJ_DIR$\..\..\Source\c_ioctrl.h $PROJ_DIR$\..\..\Source\c_display.h $PROJ_DIR$\..\..\Source\d_bt.r $PROJ_DIR$\..\..\Source\RCXintro_12.txt $PROJ_DIR$\..\..\Source\d_ioctrl.r - $PROJ_DIR$\..\..\Source\RCXintro_5.txt - $PROJ_DIR$\..\..\Source\RCXintro_4.txt - $PROJ_DIR$\..\..\Source\Fail.txt - $PROJ_DIR$\..\Include\ioat91sam7s256.h - $PROJ_DIR$\..\..\Source\RCXintro_8.txt - $PROJ_DIR$\..\..\Source\Icons.txt - $PROJ_DIR$\..\..\Source\d_lowspeed.h - $TOOLKIT_DIR$\inc\stdbool.h - $PROJ_DIR$\..\..\Source\d_display.r - $PROJ_DIR$\..\..\Source\Ok.txt + $PROJ_DIR$\..\..\Source\d_output.h + $PROJ_DIR$\..\..\Source\c_cmd.h + $PROJ_DIR$\..\..\Source\d_button.h $PROJ_DIR$\..\..\Source\RCXintro_9.txt $PROJ_DIR$\..\..\Source\Font.txt - $PROJ_DIR$\..\..\Source\d_button.r - $TOOLKIT_DIR$\inc\DLib_Defaults.h - $PROJ_DIR$\..\..\Source\d_sound.r - $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc - $PROJ_DIR$\..\..\Source\RCXintro_16.txt - $TOOLKIT_DIR$\inc\xlocale_c.h - $TOOLKIT_DIR$\inc\ysizet.h - $PROJ_DIR$\..\..\Source\c_cmd.iom $PROJ_DIR$\..\..\Source\d_hispeed.h $TOOLKIT_DIR$\inc\yvals.h - $PROJ_DIR$\..\..\Source\d_led.c $PROJ_DIR$\..\..\Source\Status.txt $PROJ_DIR$\..\..\Source\c_loader.iom $PROJ_DIR$\..\..\Source\stdconst.h - $TOOLKIT_DIR$\inc\limits.h - $PROJ_DIR$\..\..\Source\Submenu03.rms - $PROJ_DIR$\..\..\Source\d_led.h - $PROJ_DIR$\..\..\Source\c_led.iom - $TOOLKIT_DIR$\inc\ymath.h - $TOOLKIT_DIR$\inc\math.h - $PROJ_DIR$\..\..\Source\d_sound_adpcm.r - $PROJ_DIR$\..\..\Source\d_motor.c - $PROJ_DIR$\..\..\Source\c_motor.c - $PROJ_DIR$\..\..\Source\c_led.h - $PROJ_DIR$\..\..\Source\c_led.c - $PROJ_DIR$\..\..\Source\d_led.r - $PROJ_DIR$\..\..\Source\d_sensor.r - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c - $PROJ_DIR$\SrcIAR\Cstartup.s79 - $PROJ_DIR$\..\..\Source\c_sensor.c - $PROJ_DIR$\..\Include\ioat91sam7s64.h - $PROJ_DIR$\..\..\Source\main.c - $PROJ_DIR$\..\..\Source\c_motor.h - $PROJ_DIR$\..\..\Source\c_motor.iom - $PROJ_DIR$\..\..\Source\d_motor.h - $PROJ_DIR$\..\..\Source\d_motor.r - $PROJ_DIR$\..\..\Source\d_sensor.c - $PROJ_DIR$\..\..\Source\d_sensor.h - $PROJ_DIR$\..\..\Source\c_sensor.iom - $PROJ_DIR$\..\src\main.c - $PROJ_DIR$\..\..\Source\c_sensor.h - $PROJ_DIR$\RAM_Debug\Obj\c_display.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_output.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_ioctrl.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_loader.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_sound.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_comm.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_display.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_usb.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_output.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_cmd.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_cmd.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_lowspeed.pbi - $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.pbi - $PROJ_DIR$\RAM_Debug\Obj\sam7s256.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_input.pbi - $TOOLKIT_DIR$\lib\dl4tptinl8n.h - $PROJ_DIR$\RAM_Debug\Obj\c_led.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_lowspeed.r79 - $PROJ_DIR$\RAM_Debug\Obj\c_ui.pbi - $PROJ_DIR$\RAM_Debug\Obj\Cstartup.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_sound.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_bt.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.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\main.r79 - $PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_usb.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_input.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_bt.pbi - $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.r79 - $PROJ_DIR$\RAM_Debug\Obj\d_display.r79 $PROJ_DIR$\..\..\Source\c_button.iom $TOOLKIT_DIR$\inc\time.h $PROJ_DIR$\..\..\Source\c_input.iom @@ -3301,8 +3169,8 @@ $PROJ_DIR$\..\..\Source\Port.txt $PROJ_DIR$\..\..\Source\c_output.h $TOOLKIT_DIR$\inc\xlocale.h - $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\c_output.iom + $PROJ_DIR$\..\..\Source\RCXintro_7.txt $PROJ_DIR$\..\..\Source\d_loader.r $PROJ_DIR$\..\..\Source\c_comm.h $PROJ_DIR$\..\..\Source\Display.txt @@ -3316,6 +3184,83 @@ $PROJ_DIR$\..\..\Source\Test2.txt $PROJ_DIR$\..\..\Source\RCXintro_2.txt $PROJ_DIR$\..\..\Source\d_lowspeed.r + $PROJ_DIR$\..\..\Source\d_led.c + $PROJ_DIR$\..\..\Source\d_hispeed.r + $TOOLKIT_DIR$\inc\limits.h + $PROJ_DIR$\..\..\Source\c_led.iom + $PROJ_DIR$\..\..\Source\Submenu03.rms + $PROJ_DIR$\..\..\Source\d_led.h + $TOOLKIT_DIR$\inc\ymath.h + $TOOLKIT_DIR$\inc\math.h + $PROJ_DIR$\..\..\Source\d_sound_adpcm.r + $PROJ_DIR$\..\..\Source\c_led.h + $PROJ_DIR$\..\..\Source\c_led.c + $PROJ_DIR$\..\..\Source\d_led.r + $PROJ_DIR$\..\..\Source\d_motor.c + $TOOLKIT_DIR$\inc\DLib_Threads.h + $TOOLKIT_DIR$\inc\string.h + $PROJ_DIR$\..\..\Source\c_display.iom + $PROJ_DIR$\..\..\Source\RCXintro_13.txt + $PROJ_DIR$\..\..\Source\d_lowspeed.h + $TOOLKIT_DIR$\inc\stdbool.h + $PROJ_DIR$\..\..\Source\d_display.r + $PROJ_DIR$\..\..\Source\Ok.txt + $TOOLKIT_DIR$\inc\DLib_Product.h + $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\RCXintro_1.txt + $PROJ_DIR$\..\..\Source\d_sound.h + $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\d_sensor.r + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_sensor.c + $PROJ_DIR$\SrcIAR\Cstartup.s79 + $PROJ_DIR$\..\Include\ioat91sam7s64.h + $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\Source\c_motor.h + $PROJ_DIR$\..\..\Source\c_motor.iom + $PROJ_DIR$\..\..\Source\d_motor.h + $PROJ_DIR$\..\..\Source\c_sensor.h + $PROJ_DIR$\..\..\Source\d_motor.r + $PROJ_DIR$\..\..\Source\d_sensor.c + $PROJ_DIR$\..\..\Source\d_sensor.h + $PROJ_DIR$\..\..\Source\c_sensor.iom + $PROJ_DIR$\..\src\main.c + $PROJ_DIR$\RAM_Debug\Obj\c_display.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_output.pbi + $PROJ_DIR$\..\..\Source\RCXintro_11.txt + $PROJ_DIR$\..\..\Source\Step.txt + $PROJ_DIR$\..\Include\AT91SAM7S256.h + $PROJ_DIR$\..\..\Source\c_ioctrl.h + $PROJ_DIR$\..\..\Source\RCXintro_6.txt + $PROJ_DIR$\..\Include\ioat91sam7s256.h + $PROJ_DIR$\..\..\Source\Icons.txt + $PROJ_DIR$\..\..\Source\RCXintro_8.txt + $PROJ_DIR$\..\..\Source\Connections.txt + $PROJ_DIR$\..\..\Source\c_ioctrl.iom + $PROJ_DIR$\RAM_Debug\Obj\c_ioctrl.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_loader.pbi + $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_sound.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_bt.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_ioctrl.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\main.r79 + $PROJ_DIR$\RAM_Debug\Obj\Cstartup_SAM7.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_usb.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_input.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_sound.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_comm.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_button.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_comm.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_bt.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_hispeed.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_display.r79 $PROJ_DIR$\RAM_Debug\Obj\c_sound.pbi $PROJ_DIR$\RAM_Debug\Obj\c_output.r79 $PROJ_DIR$\RAM_Debug\Obj\m_sched.r79 @@ -3328,6 +3273,22 @@ $PROJ_DIR$\RAM_Debug\Obj\d_loader.r79 $PROJ_DIR$\RAM_Debug\Obj\d_input.r79 $PROJ_DIR$\RAM_Debug\Obj\c_loader.r79 + $PROJ_DIR$\RAM_Debug\Exe\LMS_ARM.d79 + $PROJ_DIR$\RAM_Debug\Obj\d_display.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_usb.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_output.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_cmd.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_cmd.pbi + $PROJ_DIR$\RAM_Debug\Obj\d_lowspeed.pbi + $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_lowspeed.pbi + $PROJ_DIR$\RAM_Debug\Obj\sam7s256.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_input.pbi + $TOOLKIT_DIR$\lib\dl4tptinl8n.h + $PROJ_DIR$\RAM_Debug\Obj\c_led.r79 + $PROJ_DIR$\RAM_Debug\Obj\d_lowspeed.r79 + $PROJ_DIR$\RAM_Debug\Obj\c_ui.pbi + $PROJ_DIR$\RAM_Debug\Obj\Cstartup.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 @@ -3337,326 +3298,426 @@ $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd $PROJ_DIR$\RAM_Debug\Obj\d_button.r79 $PROJ_DIR$\RAM_Debug\Obj\d_sensor.r79 + $TOOLKIT_DIR$\inc\xtinfo.h + $TOOLKIT_DIR$\inc\xencoding_limits.h + $PROJ_DIR$\..\..\Source\Devices.txt + $PROJ_DIR$\..\..\Source\RCXintro_5.txt + $PROJ_DIR$\..\..\Source\Fail.txt + $PROJ_DIR$\..\..\Source\RCXintro_4.txt + $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$\..\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\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$\..\..\Source\d_button.r + $TOOLKIT_DIR$\inc\DLib_Defaults.h + $PROJ_DIR$\..\..\Source\d_sound.r + $PROJ_DIR$\..\..\Source\c_cmd_drawing.inc + $PROJ_DIR$\..\..\Source\RCXintro_16.txt + $TOOLKIT_DIR$\inc\xlocale_c.h + $TOOLKIT_DIR$\inc\ysizet.h + $PROJ_DIR$\..\..\Source\c_cmd.iom - $PROJ_DIR$\..\..\Source\m_sched.c + $PROJ_DIR$\..\..\Source\c_cmd.c - BICOMP - 228 + ICCARM + 174 - ICCARM - 215 + BICOMP + 175 - BICOMP - 78 189 170 181 56 40 201 186 149 204 147 152 166 49 179 196 3 180 72 48 151 + ICCARM + 14 57 233 66 17 13 60 35 15 96 33 24 38 49 130 6 48 56 74 11 227 181 102 196 94 232 95 41 88 87 83 229 - ICCARM - 78 189 170 181 56 40 201 186 149 204 147 152 166 49 179 196 3 180 72 48 151 + BICOMP + 14 57 233 66 17 13 60 35 15 96 33 24 38 49 130 6 48 56 74 11 227 102 196 94 232 95 41 88 87 83 229 - $PROJ_DIR$\..\..\Source\d_usb.c + [ROOT_NODE] - BICOMP - 142 + XLINK + 170 + + + + $PROJ_DIR$\..\..\Source\d_led.c + ICCARM - 116 + 162 - - BICOMP - 78 170 181 56 209 185 - ICCARM - 78 170 181 56 209 185 + 14 38 49 112 86 92 - $PROJ_DIR$\..\..\Source\c_button.c + $PROJ_DIR$\..\..\Source\c_led.c - - BICOMP - 225 - ICCARM - 220 + 182 - BICOMP - 78 189 204 147 5 + ICCARM + 14 57 84 90 86 + + + + + $PROJ_DIR$\..\..\Source\d_motor.c + + + ICCARM + 143 + + ICCARM - 78 189 204 147 5 + 14 38 49 112 116 118 - $PROJ_DIR$\..\..\Source\c_cmd.c + $PROJ_DIR$\..\Include\sam7s256.c - BICOMP - 119 + ICCARM + 179 + + + + $PROJ_DIR$\..\..\Source\c_comm.c + ICCARM - 118 + 152 + + + BICOMP + 154 + + ICCARM + 14 57 33 13 134 60 233 96 69 77 10 29 95 11 227 181 102 196 94 232 43 65 26 28 41 61 231 195 16 50 + BICOMP - 78 189 72 199 149 77 192 167 147 37 165 156 170 181 56 3 180 188 206 74 66 42 6 12 71 13 173 84 83 79 68 + 14 57 33 13 134 60 233 96 69 77 10 29 95 11 227 102 196 94 232 43 65 26 28 41 61 231 195 16 50 + + + + + $PROJ_DIR$\..\..\Source\c_motor.c + + + ICCARM + 138 + + ICCARM - 78 189 72 199 149 77 192 167 147 37 165 156 170 181 56 3 180 188 206 74 66 125 42 6 12 71 13 173 84 83 79 68 + 14 57 115 114 116 - $PROJ_DIR$\..\..\Source\c_comm.c + $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c - BICOMP - 113 + ICCARM + 148 + + + + $PROJ_DIR$\..\..\Source\c_sensor.c + ICCARM - 111 + 139 - - BICOMP - 78 189 165 77 10 192 72 37 201 209 73 161 13 74 66 42 6 12 71 175 197 158 160 173 193 70 8 148 182 - ICCARM - 78 189 165 77 10 192 72 37 201 209 73 161 13 74 66 125 42 6 12 71 175 197 158 160 173 193 70 8 148 182 + 14 57 121 117 120 - $PROJ_DIR$\..\..\Source\d_timer.c + $PROJ_DIR$\SrcIAR\Cstartup.s79 - BICOMP - 137 + AARM + 185 + + + + $PROJ_DIR$\..\..\Source\main.c + ICCARM - 219 + 147 - + + + $PROJ_DIR$\..\..\Source\d_sensor.c + - BICOMP - 78 170 181 56 188 187 + ICCARM + 194 + + ICCARM - 78 170 181 56 188 187 + 14 38 49 112 120 108 - $PROJ_DIR$\..\..\Source\c_display.c + $PROJ_DIR$\..\src\main.c - - BICOMP - 227 - ICCARM - 106 + 147 + + + $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd + + BILINK + 191 186 175 154 188 180 190 136 178 124 158 184 155 153 171 137 150 142 145 176 173 163 144 149 189 + + + + + $PROJ_DIR$\..\..\Source\d_loader.c + + + ICCARM + 167 + BICOMP - 13 74 66 42 6 12 71 78 189 37 49 154 + 145 + + ICCARM - 13 74 66 125 42 6 12 71 78 189 37 49 154 + 14 57 38 49 130 18 68 95 11 227 181 102 196 94 232 43 65 26 28 41 61 231 195 16 50 + + + BICOMP + 14 57 38 49 130 18 68 95 11 227 102 196 94 232 43 65 26 28 41 61 231 195 16 50 - $PROJ_DIR$\..\..\Source\c_input.c + $PROJ_DIR$\..\..\Source\d_lowspeed.c - BICOMP - 124 + ICCARM + 183 - ICCARM - 226 + BICOMP + 176 - BICOMP - 78 189 186 149 184 199 77 13 74 66 42 6 12 71 + ICCARM + 14 38 49 130 98 80 - ICCARM - 78 189 186 149 184 199 77 13 74 66 125 42 6 12 71 + BICOMP + 14 38 49 130 98 80 - $PROJ_DIR$\..\..\Source\c_ioctrl.c + $PROJ_DIR$\..\..\Source\d_output.c - BICOMP - 229 + ICCARM + 146 - ICCARM - 108 + BICOMP + 173 - BICOMP - 78 189 10 48 164 + ICCARM + 14 38 49 130 5 37 - ICCARM - 78 189 10 48 164 + BICOMP + 14 38 49 130 5 37 - $PROJ_DIR$\..\..\Source\c_loader.c + $PROJ_DIR$\..\..\Source\d_sound.c - BICOMP - 109 + ICCARM + 151 - ICCARM - 224 + BICOMP + 163 - BICOMP - 78 189 77 10 150 152 13 74 66 42 6 12 71 + ICCARM + 14 38 49 130 105 228 89 - ICCARM - 78 189 77 10 150 152 13 74 66 125 42 6 12 71 + BICOMP + 14 38 49 130 105 228 89 - $PROJ_DIR$\..\..\Source\c_lowspeed.c + $PROJ_DIR$\..\..\Source\d_timer.c - BICOMP - 122 + ICCARM + 164 - ICCARM - 121 + BICOMP + 144 - BICOMP - 78 189 156 149 179 59 + ICCARM + 14 38 49 130 56 55 - ICCARM - 78 189 156 149 179 59 + BICOMP + 14 38 49 130 56 55 - $PROJ_DIR$\..\..\Source\c_output.c + $PROJ_DIR$\..\..\Source\d_usb.c - BICOMP - 107 + ICCARM + 172 - ICCARM - 214 + BICOMP + 149 - BICOMP - 206 74 66 42 6 12 71 60 78 189 199 196 39 37 + ICCARM + 14 38 49 130 77 53 - ICCARM - 206 74 66 125 42 6 12 71 60 78 189 199 196 39 37 + BICOMP + 14 38 49 130 77 53 - $PROJ_DIR$\..\..\Source\c_sound.c + $PROJ_DIR$\..\..\Source\m_sched.c - BICOMP - 213 + ICCARM + 160 - ICCARM - 133 + BICOMP + 189 - BICOMP - 173 74 66 42 6 12 71 13 78 189 167 77 166 44 + ICCARM + 14 57 38 49 130 103 69 54 17 72 15 20 34 1 47 64 6 48 233 128 19 - ICCARM - 173 74 66 125 42 6 12 71 13 78 189 167 77 166 44 + BICOMP + 14 57 38 49 130 103 69 54 17 72 15 20 34 1 47 64 6 48 233 128 19 - $PROJ_DIR$\..\..\Source\c_ui.c + $PROJ_DIR$\..\..\Source\c_button.c - BICOMP - 128 + ICCARM + 165 - ICCARM - 221 + BICOMP + 186 - BICOMP - 206 74 66 42 6 12 71 13 175 197 158 160 173 193 70 8 148 182 78 189 192 151 170 181 56 37 77 147 167 149 199 10 72 165 156 202 194 64 45 203 205 195 62 191 55 171 58 41 211 155 54 53 47 198 57 63 190 43 51 38 178 163 69 76 2 9 159 168 174 172 80 176 153 177 157 0 207 162 210 + ICCARM + 14 57 72 15 7 - ICCARM - 206 74 66 125 42 6 12 71 13 175 197 158 160 173 193 70 8 148 182 78 189 192 151 170 181 56 37 77 147 167 149 199 10 72 165 156 202 194 64 45 203 205 195 62 191 55 171 58 41 211 155 54 53 47 198 57 63 190 43 51 38 178 163 69 76 2 9 159 168 174 172 80 176 153 177 157 0 207 162 210 + BICOMP + 14 57 72 15 7 @@ -3665,13 +3726,13 @@ AARM - 129 + 185 AARM - 183 + 51 @@ -3679,22 +3740,22 @@ $PROJ_DIR$\..\Include\Cstartup_SAM7.c - BICOMP - 230 + ICCARM + 148 - ICCARM - 141 + BICOMP + 191 - BICOMP - 46 + ICCARM + 127 - ICCARM - 46 + BICOMP + 127 @@ -3702,22 +3763,22 @@ $PROJ_DIR$\..\..\Source\d_bt.c - BICOMP - 144 + ICCARM + 141 - ICCARM - 134 + BICOMP + 155 - BICOMP - 78 189 170 181 56 161 50 13 74 66 42 6 12 71 + ICCARM + 14 57 38 49 130 29 2 95 11 227 181 102 196 94 232 - ICCARM - 78 189 170 181 56 161 50 13 74 66 125 42 6 12 71 + BICOMP + 14 57 38 49 130 29 2 95 11 227 102 196 94 232 @@ -3725,22 +3786,22 @@ $PROJ_DIR$\..\..\Source\d_button.c - BICOMP - 112 + ICCARM + 193 - ICCARM - 232 + BICOMP + 153 - BICOMP - 78 170 181 56 5 65 + ICCARM + 14 38 49 130 7 226 - ICCARM - 78 170 181 56 5 65 + BICOMP + 14 38 49 130 7 226 @@ -3748,22 +3809,22 @@ $PROJ_DIR$\..\..\Source\d_display.c - BICOMP - 115 + ICCARM + 157 - ICCARM - 146 + BICOMP + 171 - BICOMP - 78 170 181 56 154 61 + ICCARM + 14 38 49 130 22 100 - ICCARM - 78 170 181 56 154 61 + BICOMP + 14 38 49 130 22 100 @@ -3771,22 +3832,22 @@ $PROJ_DIR$\..\..\Source\d_hispeed.c - BICOMP - 130 + ICCARM + 156 - ICCARM - 145 + BICOMP + 137 - BICOMP - 78 170 181 56 73 11 + ICCARM + 14 38 49 130 10 82 - ICCARM - 78 170 181 56 73 11 + BICOMP + 14 38 49 130 10 82 @@ -3794,22 +3855,22 @@ $PROJ_DIR$\..\..\Source\d_input.c - BICOMP - 143 + ICCARM + 168 - ICCARM - 223 + BICOMP + 150 - BICOMP - 78 170 181 56 186 149 184 208 + ICCARM + 14 38 49 130 54 17 52 76 - ICCARM - 78 170 181 56 186 149 184 208 + BICOMP + 14 38 49 130 54 17 52 76 @@ -3817,267 +3878,206 @@ $PROJ_DIR$\..\..\Source\d_ioctrl.c - BICOMP - 135 + ICCARM + 161 - ICCARM - 216 + BICOMP + 142 - BICOMP - 13 74 66 42 6 12 71 78 170 181 56 164 52 + ICCARM + 95 11 227 181 102 196 94 232 14 38 49 130 32 4 - ICCARM - 13 74 66 125 42 6 12 71 78 170 181 56 164 52 + BICOMP + 95 11 227 102 196 94 232 14 38 49 130 32 4 - $PROJ_DIR$\..\..\Source\d_loader.c + $PROJ_DIR$\..\..\Source\c_display.c - BICOMP - 138 + ICCARM + 123 - ICCARM - 222 + BICOMP + 188 - BICOMP - 78 189 170 181 56 150 200 13 74 66 42 6 12 71 175 197 158 160 173 193 70 8 148 182 + ICCARM + 95 11 227 181 102 196 94 232 14 57 96 1 22 - ICCARM - 78 189 170 181 56 150 200 13 74 66 125 42 6 12 71 175 197 158 160 173 193 70 8 148 182 + BICOMP + 95 11 227 102 196 94 232 14 57 96 1 22 - $PROJ_DIR$\..\..\Source\d_lowspeed.c + $PROJ_DIR$\..\..\Source\c_input.c - BICOMP - 120 + ICCARM + 187 - ICCARM - 127 + BICOMP + 180 - BICOMP - 78 170 181 56 59 212 + ICCARM + 14 57 54 17 52 66 13 95 11 227 181 102 196 94 232 - ICCARM - 78 170 181 56 59 212 + BICOMP + 14 57 54 17 52 66 13 95 11 227 102 196 94 232 - $PROJ_DIR$\..\..\Source\d_output.c + $PROJ_DIR$\..\..\Source\c_ioctrl.c - BICOMP - 117 + ICCARM + 135 - ICCARM - 139 + BICOMP + 190 - BICOMP - 78 170 181 56 39 169 + ICCARM + 14 57 134 128 32 - ICCARM - 78 170 181 56 39 169 + BICOMP + 14 57 134 128 32 - $PROJ_DIR$\..\..\Source\d_sound.c + $PROJ_DIR$\..\..\Source\c_loader.c - - BICOMP - 218 - ICCARM - 110 + 169 - - BICOMP - 78 170 181 56 44 67 85 + 136 + + ICCARM - 78 170 181 56 44 67 85 + 14 57 13 134 18 20 95 11 227 181 102 196 94 232 - - - - [ROOT_NODE] - - XLINK - 114 + BICOMP + 14 57 13 134 18 20 95 11 227 102 196 94 232 - + - $PROJ_DIR$\..\Include\sam7s256.c + $PROJ_DIR$\..\..\Source\c_lowspeed.c ICCARM - 123 + 177 - - - - $PROJ_DIR$\..\..\Source\d_led.c - - ICCARM - 217 + BICOMP + 178 ICCARM - 78 170 181 95 81 90 - - - - - $PROJ_DIR$\..\..\Source\d_motor.c - - - ICCARM - 136 + 14 57 24 17 47 98 - - - ICCARM - 78 170 181 95 99 100 + BICOMP + 14 57 24 17 47 98 - $PROJ_DIR$\..\..\Source\c_motor.c + $PROJ_DIR$\..\..\Source\c_output.c ICCARM - 131 - - - - - ICCARM - 78 189 98 97 99 + 159 - - - - $PROJ_DIR$\..\..\Source\c_led.c - - ICCARM - 126 + BICOMP + 124 ICCARM - 78 189 82 88 81 + 74 11 227 181 102 196 94 232 99 14 57 66 64 5 96 + + + BICOMP + 74 11 227 102 196 94 232 99 14 57 66 64 5 96 - $PROJ_DIR$\SrcIAR\Cstartup_SAM7.c + $PROJ_DIR$\..\..\Source\c_sound.c ICCARM - 141 + 140 - - - - $PROJ_DIR$\SrcIAR\Cstartup.s79 - - AARM - 129 + BICOMP + 158 - - - $PROJ_DIR$\..\..\Source\c_sensor.c - + ICCARM - 132 + 41 11 227 181 102 196 94 232 95 14 57 35 13 34 105 - - - ICCARM - 78 189 103 105 102 + BICOMP + 41 11 227 102 196 94 232 95 14 57 35 13 34 105 - $PROJ_DIR$\..\..\Source\main.c + $PROJ_DIR$\..\..\Source\c_ui.c ICCARM - 140 + 166 - - - - $PROJ_DIR$\..\..\Source\d_sensor.c - - ICCARM - 233 + BICOMP + 184 ICCARM - 78 170 181 95 102 91 + 74 11 227 181 102 196 94 232 95 43 65 26 28 41 61 231 195 16 50 14 57 60 19 38 49 130 96 13 15 35 17 66 134 233 33 24 70 62 9 126 71 73 63 101 59 199 39 131 104 79 23 200 198 129 67 132 8 58 125 3 97 46 31 230 12 197 133 27 36 42 40 85 44 21 45 25 207 75 30 78 - - - - $PROJ_DIR$\..\src\main.c - - - ICCARM - 140 - - - - - $PROJ_DIR$\RAM_Debug\Obj\LMS_ARM.pbd - - BILINK - 230 225 119 113 227 124 229 109 122 107 213 128 144 112 115 130 143 135 138 120 117 218 137 142 228 + BICOMP + 74 11 227 102 196 94 232 95 43 65 26 28 41 61 231 195 16 50 14 57 60 19 38 49 130 96 13 15 35 17 66 134 233 33 24 70 62 9 126 71 73 63 101 59 199 39 131 104 79 23 200 198 129 67 132 8 58 125 3 97 46 31 230 12 197 133 27 36 42 40 85 44 21 45 25 207 75 30 78 diff --git a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp index 7d7825a..c90d273 100644 --- a/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp +++ b/AT91SAM7S256/SAM7S256/Tools/LMS_ARM.ewp @@ -1789,9 +1789,6 @@ CCDefines PROTOTYPE_PCB_4 NEW_MENU - INCLUDE_OBP - INCLUDE_INTRO - INCLUDE_DATALOG