From 5d925c3dda0a91f80c2e16337876ba83b1e35fa6 Mon Sep 17 00:00:00 2001 From: bugvish Date: Wed, 28 May 2014 03:47:50 -0400 Subject: [PATCH] finishing touches to Dweet release - Adds reporting of LED statuses on each send - allows LEDs to be set remotely - incorporates proper default app modes --- Apps/{App_Swarm.c => App_Dweet.c} | 88 +- Apps/{App_Swarm.h => App_Dweet.h} | 8 +- YRDKRL78G14/ADKRenesasG14.dep | 1550 +++++++++++++++-------------- YRDKRL78G14/ADKRenesasG14.ewp | 12 +- YRDKRL78G14/init/hwsetup.c | 1 + YRDKRL78G14/main.c | 97 +- 6 files changed, 907 insertions(+), 849 deletions(-) rename Apps/{App_Swarm.c => App_Dweet.c} (75%) mode change 100644 => 100755 rename Apps/{App_Swarm.h => App_Dweet.h} (80%) mode change 100644 => 100755 mode change 100644 => 100755 YRDKRL78G14/ADKRenesasG14.dep mode change 100644 => 100755 YRDKRL78G14/ADKRenesasG14.ewp mode change 100644 => 100755 YRDKRL78G14/init/hwsetup.c mode change 100644 => 100755 YRDKRL78G14/main.c diff --git a/Apps/App_Swarm.c b/Apps/App_Dweet.c old mode 100644 new mode 100755 similarity index 75% rename from Apps/App_Swarm.c rename to Apps/App_Dweet.c index f0662cf..bce4345 --- a/Apps/App_Swarm.c +++ b/Apps/App_Dweet.c @@ -21,20 +21,20 @@ #include "led.h" #include #include -#include "App_Swarm.h" +#include "App_Dweet.h" #define UPDATE_PERIOD 5000 #define NUM_SENSOR 5 #define CAPABILITIES_PERIOD 10000 #define MAX_PROD_ERRORS 5 -#define CLIENT_VER "Swarm Client R0.6.1" +#define CLIENT_VER "Dweet Client R0.9.9" /*-------------------------------------------------------------------------* * Constants: *-------------------------------------------------------------------------*/ uint16_t period = NUM_SENSOR; -/* Default swarm connection parameters */ +/* Default dweet connection parameters */ #define DWEET_HOST "dweet.io" #define DWEET_PORT 80 #define THING_ID_EEPROM_LOC 128 @@ -52,21 +52,23 @@ jsmntok_t tokens[JSON_TOKEN_MAX]; jsmnerr_t jr; char msg[300]; +char ledmsg[500]; bool connected; /*----------------------------------------------------------------------------* -* Routine: App_SwarmConnector +* Routine: App_DweetConnector *----------------------------------------------------------------------------* * Description: -* Run the swarm connector demo indefinitely +* Run the Dweet connector demo indefinitely *----------------------------------------------------------------------------*/ -void App_SwarmConnector(void) +void App_DweetConnector(void) { thingID[0] = NULL; lastUpdate[0] = NULL; msg[0] = NULL; + ledmsg[0] = NULL; uint8_t cid = ATLIBGS_INVALID_CID; // If switch 3 is pressed, reset the EEPROM @@ -98,25 +100,25 @@ void App_SwarmConnector(void) DisplayLCD(LCD_LINE1, ""); DisplayLCD(LCD_LINE2, "dweet.io"); DisplayLCD(LCD_LINE3, ""); - DisplayLCD(LCD_LINE4, ""); if(thingID[0] == NULL) { - DisplayLCD(LCD_LINE5, ""); + DisplayLCD(LCD_LINE4, ""); } else { - DisplayLCD(LCD_LINE4, "thing:"); - DisplayLCD(LCD_LINE5, thingID); + DisplayLCD(LCD_LINE5, "thing:"); + DisplayLCD(LCD_LINE6, thingID); } - DisplayLCD(LCD_LINE6, ""); DisplayLCD(LCD_LINE7, ""); DisplayLCD(LCD_LINE8, "connecting......."); App_aClientConnection(); //Will block until connected AtLibGs_SetNodeAssociationFlag(); memset(msg, '\0', sizeof(msg)); + memset(ledmsg, '\0', sizeof(ledmsg)); + led_all_off(); @@ -139,8 +141,9 @@ void App_SwarmConnector(void) connected = true; while (connected) { - DisplayLCD(LCD_LINE1, "visit:"); - DisplayLCD(LCD_LINE2, "dweet.io/follow"); + DisplayLCD(LCD_LINE1, (const uint8_t *) CLIENT_VER); + DisplayLCD(LCD_LINE2, "visit:"); + DisplayLCD(LCD_LINE3, "dweet.io/follow"); DisplayLCD(LCD_LINE8, animationIndex); @@ -187,6 +190,27 @@ void addJSONKeyNumberValue(char* jsonString, const char* keyName, float value) sprintf(jsonString + pos, "\"%s\":%.2f", keyName, value); } +void addJSONKeyStringValue(char* jsonString, const char* keyName, const char* value) +{ + int pos = strlen(jsonString); + + if(jsonString[pos - 1] != '{') + { + strcat(jsonString, ","); + pos++; + } + + sprintf(jsonString + pos, "\"%s\":\"%s\"", keyName, value); +} + +const char * ledValue(int idx) { + if (led_get(idx) == 1) { + return true_val; + } else { + return false_val; + } +} + ATLIBGS_MSG_ID_E checkData(uint8_t* cid) { if(thingID[0] == NULL) @@ -199,6 +223,8 @@ ATLIBGS_MSG_ID_E checkData(uint8_t* cid) char thingPath[64]; sprintf(thingPath, "/get/latest/dweet/for/%s-send", thingID); strcpy(msg, "\r\n"); + + int val; r = httpRequest(ATLIBGS_HTTPSEND_GET, 5000, thingPath, msg, cid); if (r != ATLIBGS_MSG_ID_OK) @@ -234,6 +260,18 @@ ATLIBGS_MSG_ID_E checkData(uint8_t* cid) MSTimerDelay(2000); R_TAU0_Channel0_Stop(); } + int ledUpdate = findKey(body, tokens, JSON_TOKEN_MAX, "led"); + if(ledUpdate >= 0) + { + val = atoi(body+tokens[ledUpdate].start+3); + if (body[tokens[ledUpdate+1].start] == 't') { + ConsolePrintf("LED %d ON\n", val); + led_on(val); + } else { + ConsolePrintf("LED %d OFF\n", val); + led_off(val); + } + } } } @@ -250,6 +288,9 @@ ATLIBGS_MSG_ID_E dweetData(uint8_t* cid) msg[0] = '{'; msg[1] = '\0'; + + ledmsg[0] = '{'; + ledmsg[1] = '\0'; // Get our temp iValue = Temperature_Get(); @@ -275,6 +316,24 @@ ATLIBGS_MSG_ID_E dweetData(uint8_t* cid) // Get our pot addJSONKeyNumberValue(msg, "pot", Potentiometer_Get()); + + // Get our LED statuses + addJSONKeyStringValue(ledmsg, "led3", ledValue(0)); + addJSONKeyStringValue(ledmsg, "led4", ledValue(1)); + addJSONKeyStringValue(ledmsg, "led5", ledValue(2)); + addJSONKeyStringValue(ledmsg, "led6", ledValue(3)); + addJSONKeyStringValue(ledmsg, "led7", ledValue(4)); + addJSONKeyStringValue(ledmsg, "led8", ledValue(5)); + addJSONKeyStringValue(ledmsg, "led9", ledValue(6)); + addJSONKeyStringValue(ledmsg, "led10", ledValue(7)); + addJSONKeyStringValue(ledmsg, "led11", ledValue(8)); + addJSONKeyStringValue(ledmsg, "led12", ledValue(9)); + addJSONKeyStringValue(ledmsg, "led13", ledValue(10)); + addJSONKeyStringValue(ledmsg, "led14", ledValue(11)); + addJSONKeyStringValue(ledmsg, "led15", ledValue(12)); + strcat(ledmsg, "}\r\n"); + strcat(msg, ",\"led\":"); + strcat(msg,ledmsg); strcat(msg, "}\r\n"); @@ -464,4 +523,5 @@ int findKey(char * jsonpos, jsmntok_t * tokens, int toklen, const char * key) { } } return ret; -} \ No newline at end of file +} + diff --git a/Apps/App_Swarm.h b/Apps/App_Dweet.h old mode 100644 new mode 100755 similarity index 80% rename from Apps/App_Swarm.h rename to Apps/App_Dweet.h index b2de0eb..fc0a380 --- a/Apps/App_Swarm.h +++ b/Apps/App_Dweet.h @@ -1,13 +1,13 @@ -#ifndef SWARM_H_ -#define SWARM_H_ +#ifndef DWEET_H_ +#define DWEET_H_ #include -void App_SwarmConnector(void); +void App_DweetConnector(void); ATLIBGS_MSG_ID_E dweetData(uint8_t* cid); ATLIBGS_MSG_ID_E checkData(uint8_t* cid); int findKey(char * jsonpos, jsmntok_t * tokens, int toklen, const char * key); int getValue(char * jsonpos, jsmntok_t * tokens, int toklen, const char * key, char* outValue); ATLIBGS_MSG_ID_E httpRequest(ATLIBGS_HTTPSEND_E type, uint16_t timeout, char* page, char* inOutBuffer, uint8_t* cid); -#endif // SWARM_H_ \ No newline at end of file +#endif // DWEET_H_ \ No newline at end of file diff --git a/YRDKRL78G14/ADKRenesasG14.dep b/YRDKRL78G14/ADKRenesasG14.dep old mode 100644 new mode 100755 index 7660899..2b5bec4 --- a/YRDKRL78G14/ADKRenesasG14.dep +++ b/YRDKRL78G14/ADKRenesasG14.dep @@ -2,53 +2,83 @@ 2 - 1740961771 + 1027869996 Debug - $PROJ_DIR$\..\Apps\App_ProgramMode.c - $PROJ_DIR$\..\Apps\App_PassThroughSPI.c - $PROJ_DIR$\..\Apps\App_ProbeDemo.c $PROJ_DIR$\..\Apps\App_Startup.c $PROJ_DIR$\..\Apps\App_Swarm.c $PROJ_DIR$\..\Apps\App_Swarm.h - $PROJ_DIR$\..\ATCmdLib\AtCmdLib.c $PROJ_DIR$\..\Apps\Apps.h + $PROJ_DIR$\..\ATCmdLib\AtCmdLib.c $PROJ_DIR$\..\ATCmdLib\AtCmdLib.h $PROJ_DIR$\..\GSHAL\GainSpan_SPI.c $PROJ_DIR$\..\GSHAL\GainSpan_SPI.h - $PROJ_DIR$\..\GSHAL\NVSettings.c $PROJ_DIR$\..\GSHAL\GSHAL.c $PROJ_DIR$\..\GSHAL\mstimer.c $PROJ_DIR$\..\GSHAL\mstimer.h + $PROJ_DIR$\..\GSHAL\NVSettings.c + $PROJ_DIR$\..\Apps\App_Dweet.h + $PROJ_DIR$\Debug\Obj\user_app.pbi + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_bsp.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.c + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_core.c + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_core.h + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_def.h + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.h + $PROJ_DIR$\drv\ADC.h + $PROJ_DIR$\drv\I2C.c + $PROJ_DIR$\drv\I2C.h + $PROJ_DIR$\drv\led.c + $PROJ_DIR$\drv\led.h + $PROJ_DIR$\drv\SAU.h + $PROJ_DIR$\drv\SPI _G14.c + $PROJ_DIR$\drv\RDKRL78_spi.c + $PROJ_DIR$\drv\RDKRL78_spi.h + $PROJ_DIR$\Debug\Obj\led.pbi + $PROJ_DIR$\Debug\Obj\GSHAL.pbi + $PROJ_DIR$\Debug\Obj\App_Startup.pbi + $PROJ_DIR$\Debug\Obj\UART.pbi + $PROJ_DIR$\Debug\Obj\lib_mem.r87 + $TOOLKIT_DIR$\inc\intrinsics.h + $PROJ_DIR$\Debug\Obj\r_cg_serial_user.r87 + $TOOLKIT_DIR$\lib\dlrl78nn2n.h + $PROJ_DIR$\Debug\Obj\EEPROM.r87 + $PROJ_DIR$\Debug\Obj\Temperature.pbi + $PROJ_DIR$\Debug\Obj\probe_com.r87 + $PROJ_DIR$\Debug\Obj\cpu_bsp.r87 + $TOOLKIT_DIR$\inc\c\stdarg.h + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\Debug\Obj\probe_com_os.pbi + $PROJ_DIR$\drv\Glyph\glyph_types.h + $PROJ_DIR$\drv\Glyph\Glyph_API.h + $PROJ_DIR$\drv\Glyph\glyph_register.c + $PROJ_DIR$\drv\Glyph\glyph_cfg.h + $PROJ_DIR$\drv\Glyph\RL78GlyphLib_Debug.r87 + $PROJ_DIR$\drv\ADC.c + $PROJ_DIR$\drv\Glyph\lcd.c + $PROJ_DIR$\drv\Glyph\lcd.h + $PROJ_DIR$\..\Apps\App_PassThroughSPI.c + $PROJ_DIR$\..\Apps\App_ProgramMode.c + $PROJ_DIR$\..\Apps\App_ProbeDemo.c + $PROJ_DIR$\system\EEPROM.c + $PROJ_DIR$\system\EEPROM.h + $PROJ_DIR$\system\GainSpan_IO.c $PROJ_DIR$\..\GSHAL\NVSettings.h - $PROJ_DIR$\..\Micrium\Software\Cfg\app_cfg.h $PROJ_DIR$\..\jsmn\jsmn.c $PROJ_DIR$\..\jsmn\jsmn.h + $PROJ_DIR$\..\Micrium\Software\Cfg\app_cfg.h $PROJ_DIR$\..\Micrium\Software\Cfg\cpu_cfg.h $PROJ_DIR$\..\Micrium\Software\Cfg\includes.h $PROJ_DIR$\..\Micrium\Software\Cfg\probe_com_cfg.h $PROJ_DIR$\..\Micrium\Software\uC-CPU\RL78\IAR\cpu.h - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_bsp.c - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_core.c - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_core.h - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_def.h - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.c - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.h - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_def.h - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.c - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.h - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.c - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.h - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.c - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.h - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\OS\None\probe_com_os.c - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.c - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.h - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\OS\None\probe_wifi_os.c - $PROJ_DIR$\..\sensors\Accelerometer.c - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.c - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.h + $PROJ_DIR$\drv\EInk\eink_rdk_display.h + $PROJ_DIR$\drv\EInk\eink_driver.c + $PROJ_DIR$\drv\EInk\eink_rdk_display.c + $PROJ_DIR$\drv\EInk\eink_driver.h + $PROJ_DIR$\drv\Glyph\Drivers\ST7579_LCD.h + $PROJ_DIR$\drv\EInk\user_app.c + $PROJ_DIR$\drv\EInk\user_app.h $PROJ_DIR$\..\sensors\Accelerometer.h $PROJ_DIR$\..\sensors\LightSensor.c $PROJ_DIR$\..\sensors\LightSensor.h @@ -62,30 +92,6 @@ $PROJ_DIR$\applilet3_src\r_cg_timer.c $PROJ_DIR$\applilet3_src\r_cg_timer.h $PROJ_DIR$\applilet3_src\r_cg_timer_user.c - $PROJ_DIR$\drv\EInk\eink_driver.c - $PROJ_DIR$\drv\EInk\eink_driver.h - $PROJ_DIR$\drv\EInk\eink_rdk_display.c - $PROJ_DIR$\drv\EInk\eink_rdk_display.h - $PROJ_DIR$\drv\EInk\user_app.c - $PROJ_DIR$\drv\EInk\user_app.h - $PROJ_DIR$\drv\Glyph\Drivers\ST7579_LCD.h - $PROJ_DIR$\drv\Glyph\Glyph_API.h - $PROJ_DIR$\drv\Glyph\glyph_cfg.h - $PROJ_DIR$\drv\Glyph\glyph_register.c - $PROJ_DIR$\drv\Glyph\glyph_types.h - $PROJ_DIR$\drv\Glyph\lcd.c - $PROJ_DIR$\drv\Glyph\lcd.h - $PROJ_DIR$\drv\Glyph\RL78GlyphLib_Debug.r87 - $PROJ_DIR$\drv\ADC.c - $PROJ_DIR$\drv\ADC.h - $PROJ_DIR$\drv\I2C.c - $PROJ_DIR$\drv\I2C.h - $PROJ_DIR$\drv\led.c - $PROJ_DIR$\drv\led.h - $PROJ_DIR$\drv\RDKRL78_spi.c - $PROJ_DIR$\drv\RDKRL78_spi.h - $PROJ_DIR$\drv\SAU.h - $PROJ_DIR$\drv\SPI _G14.c $PROJ_DIR$\drv\SPI.h $PROJ_DIR$\drv\Timer.c $PROJ_DIR$\drv\Timer.h @@ -95,67 +101,121 @@ $PROJ_DIR$\init\hwsetup.h $PROJ_DIR$\system\console.c $PROJ_DIR$\system\console.h - $PROJ_DIR$\system\EEPROM.c - $PROJ_DIR$\system\EEPROM.h - $PROJ_DIR$\system\GainSpan_IO.c - $PROJ_DIR$\system\GainSpan_IO.h - $PROJ_DIR$\system\Switch.c - $PROJ_DIR$\system\platform.h - $PROJ_DIR$\system\Switch.h - $PROJ_DIR$\system\YRDKRL78G14.h - $PROJ_DIR$\Debug\Obj\App_Swarm.r87 - $PROJ_DIR$\main.c - $PROJ_DIR$\Debug\Obj\hwsetup.r87 - $PROJ_DIR$\Debug\Obj\probe_wifi_os.r87 - $PROJ_DIR$\Debug\Obj\RDKRL78_spi.r87 - $PROJ_DIR$\Debug\Obj\mstimer.pbi - $PROJ_DIR$\Debug\Obj\App_ProbeDemo.r87 - $PROJ_DIR$\Debug\Obj\Timer.r87 - $TOOLKIT_DIR$\inc\c\wchar.h - $PROJ_DIR$\Debug\Obj\GainSpan_IO.pbi - $PROJ_DIR$\Debug\Obj\LightSensor.r87 - $TOOLKIT_DIR$\inc\c\xlocaleuse.h - $PROJ_DIR$\Debug\Obj\lib_math.pbi - $PROJ_DIR$\Debug\Obj\App_Swarm.pbi - $PROJ_DIR$\Debug\Obj\Timer.pbi - $PROJ_DIR$\applilet3_src\r_cg_userdefine.h - $TOOLKIT_DIR$\inc\c\xlocale.h - $PROJ_DIR$\Debug\Obj\jsmn.pbi - $TOOLKIT_DIR$\inc\c\xtgmath.h - $PROJ_DIR$\Debug\Obj\GainSpan_SPI.pbi - $TOOLKIT_DIR$\inc\c\xencoding_limits.h - $PROJ_DIR$\Debug\Obj\mstimer.r87 - $TOOLKIT_DIR$\inc\c\stdint.h - $PROJ_DIR$\Debug\Obj\Temperature.r87 - $PROJ_DIR$\Debug\Obj\r_cg_timer.pbi - $PROJ_DIR$\Debug\Obj\SPI _G14.pbi - $PROJ_DIR$\HostApp.h - $TOOLKIT_DIR$\lib\dlrl78nn2n.r87 - $TOOLKIT_DIR$\inc\c\stdbool.h - $PROJ_DIR$\applilet3_src\r_cg_it.h - $PROJ_DIR$\Debug\Obj\r_cg_serial_user.pbi - $PROJ_DIR$\Debug\Obj\lib_ascii.r87 - $PROJ_DIR$\Debug\Obj\I2C.r87 + $PROJ_DIR$\Debug\Obj\App_ProgramMode.pbi + $PROJ_DIR$\Debug\Obj\glyph_register.pbi + $PROJ_DIR$\Debug\Obj\App_ProbeDemo.pbi + $PROJ_DIR$\Debug\List\ADKRenesasG14.map + $PROJ_DIR$\Debug\Obj\LightSensor.pbi + $PROJ_DIR$\Debug\Obj\Switch.pbi + $PROJ_DIR$\Debug\Obj\eink_rdk_display.r87 + $PROJ_DIR$\Debug\Obj\SPI _G14.r87 + $PROJ_DIR$\Debug\Obj\RDKRL78_spi.pbi + $PROJ_DIR$\Debug\Obj\App_PassThroughSPI.pbi + $PROJ_DIR$\Debug\Obj\UART.r87 + $TOOLKIT_DIR$\inc\ior5f104pj_ext.h + $TOOLKIT_DIR$\inc\c\DLib_Threads.h + $PROJ_DIR$\Debug\Obj\probe_wifi.r87 + $PROJ_DIR$\Debug\Obj\eink_rdk_display.pbi + $PROJ_DIR$\Debug\Obj\cpu_bsp.pbi + $PROJ_DIR$\Debug\Exe\ADKRenesasG14.mot + $PROJ_DIR$\Debug\Obj\lib_str.r87 + $PROJ_DIR$\Debug\Obj\App_Startup.r87 + $PROJ_DIR$\applilet3_src\r_cg_macrodriver.h + $PROJ_DIR$\Debug\Obj\r_cg_timer.r87 + $PROJ_DIR$\Debug\Obj\App_PassThroughSPI.r87 + $PROJ_DIR$\Debug\Obj\r_cg_timer_user.r87 + $PROJ_DIR$\Debug\Obj\App_ProgramMode.r87 + $PROJ_DIR$\Debug\Obj\jsmn.r87 + $PROJ_DIR$\Debug\Obj\NVSettings.pbi + $PROJ_DIR$\Debug\Obj\console.r87 + $PROJ_DIR$\Debug\Obj\eink_driver.r87 + $PROJ_DIR$\Debug\Obj\Switch.r87 + $PROJ_DIR$\Debug\Obj\Accelerometer.pbi + $PROJ_DIR$\Debug\Obj\GSHAL.r87 + $PROJ_DIR$\Debug\Obj\lib_ascii.pbi + $PROJ_DIR$\Debug\Obj\lcd.r87 + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\Debug\Obj\cpu_core.r87 + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_def.h + $PROJ_DIR$\..\sensors\Accelerometer.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.h + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.h $PROJ_DIR$\Debug\Obj\GainSpan_SPI.r87 $TOOLKIT_DIR$\inc\c\xlocale_c.h + $PROJ_DIR$\Debug\Obj\I2C.r87 $PROJ_DIR$\Debug\Obj\probe_com_os.r87 $PROJ_DIR$\Debug\Obj\led.r87 $TOOLKIT_DIR$\config\lnkr5f104pj.xcl $PROJ_DIR$\Debug\Obj\probe_com.pbi $PROJ_DIR$\Debug\Obj\console.pbi $PROJ_DIR$\Debug\Obj\glyph_register.r87 - $PROJ_DIR$\Debug\Obj\cpu_core.pbi - $PROJ_DIR$\Debug\Obj\Accelerometer.r87 $PROJ_DIR$\Debug\Obj\r_cg_timer_user.pbi + $PROJ_DIR$\Debug\Obj\Accelerometer.r87 + $PROJ_DIR$\Debug\Obj\cpu_core.pbi $TOOLKIT_DIR$\inc\c\string.h $TOOLKIT_DIR$\inc\c\stdlib.h $PROJ_DIR$\Debug\Exe\ADKRenesasG14.d87 $PROJ_DIR$\Debug\Obj\probe_wifi.pbi $PROJ_DIR$\Debug\Obj\lib_str.pbi $PROJ_DIR$\Debug\Obj\ADC.r87 - $PROJ_DIR$\Debug\Obj\user_app.r87 - $TOOLKIT_DIR$\inc\c\ysizet.h $PROJ_DIR$\Debug\Obj\eink_driver.pbi + $TOOLKIT_DIR$\inc\c\ysizet.h + $PROJ_DIR$\..\Apps\App_Dweet.c + $PROJ_DIR$\Debug\Obj\probe_wifi_os.r87 + $PROJ_DIR$\Debug\Obj\hwsetup.r87 + $PROJ_DIR$\Debug\Obj\App_Swarm.r87 + $PROJ_DIR$\Debug\Obj\Timer.r87 + $PROJ_DIR$\Debug\Obj\App_ProbeDemo.r87 + $PROJ_DIR$\Debug\Obj\mstimer.pbi + $PROJ_DIR$\Debug\Obj\RDKRL78_spi.r87 + $TOOLKIT_DIR$\inc\c\wchar.h + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\OS\None\probe_com_os.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.h + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.h + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\OS\None\probe_wifi_os.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.h + $PROJ_DIR$\Debug\Obj\App_Dweet.pbi + $PROJ_DIR$\Debug\Obj\App_Dweet.r87 + $PROJ_DIR$\system\GainSpan_IO.h + $PROJ_DIR$\system\platform.h + $PROJ_DIR$\system\Switch.c + $PROJ_DIR$\system\Switch.h + $PROJ_DIR$\main.c + $PROJ_DIR$\system\YRDKRL78G14.h + $TOOLKIT_DIR$\inc\c\stdbool.h + $PROJ_DIR$\applilet3_src\r_cg_it.h + $PROJ_DIR$\Debug\Obj\r_cg_serial_user.pbi + $PROJ_DIR$\Debug\Obj\lib_ascii.r87 + $TOOLKIT_DIR$\inc\c\xtgmath.h + $PROJ_DIR$\Debug\Obj\GainSpan_SPI.pbi + $PROJ_DIR$\Debug\Obj\jsmn.pbi + $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $PROJ_DIR$\Debug\Obj\mstimer.r87 + $TOOLKIT_DIR$\inc\c\stdint.h + $PROJ_DIR$\Debug\Obj\Temperature.r87 + $PROJ_DIR$\Debug\Obj\r_cg_timer.pbi + $TOOLKIT_DIR$\lib\dlrl78nn2n.r87 + $PROJ_DIR$\HostApp.h + $PROJ_DIR$\Debug\Obj\I2C.pbi + $PROJ_DIR$\Debug\Obj\EEPROM.pbi + $PROJ_DIR$\Debug\Obj\ADC.pbi + $PROJ_DIR$\Debug\Obj\lcd.pbi + $PROJ_DIR$\Debug\Obj\probe_wifi_os.pbi + $PROJ_DIR$\Debug\Obj\Potentiometer.pbi + $TOOLKIT_DIR$\inc\c\ctype.h + $PROJ_DIR$\Debug\Obj\AtCmdLib.pbi + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\Debug\Obj\Potentiometer.r87 + $PROJ_DIR$\Debug\Obj\lib_math.r87 + $PROJ_DIR$\Debug\Obj\AtCmdLib.r87 + $PROJ_DIR$\drv\r_cg_macrodriver.h + $PROJ_DIR$\Debug\Obj\r_cg_serial.r87 + $PROJ_DIR$\Debug\Obj\user_app.r87 $PROJ_DIR$\Debug\Obj\r_cg_serial.pbi $PROJ_DIR$\Debug\Obj\main.r87 $TOOLKIT_DIR$\inc\c\math.h @@ -172,1175 +232,1137 @@ $TOOLKIT_DIR$\inc\c\ymath.h $TOOLKIT_DIR$\inc\c\xmtx.h $PROJ_DIR$\Debug\Obj\NVSettings.r87 - $PROJ_DIR$\Debug\Obj\App_ProgramMode.pbi - $PROJ_DIR$\Debug\Obj\glyph_register.pbi - $PROJ_DIR$\Debug\Obj\App_ProbeDemo.pbi - $PROJ_DIR$\Debug\List\ADKRenesasG14.map - $PROJ_DIR$\Debug\Obj\LightSensor.pbi - $PROJ_DIR$\Debug\Obj\SPI _G14.r87 - $PROJ_DIR$\Debug\Obj\eink_rdk_display.r87 - $PROJ_DIR$\Debug\Obj\Switch.pbi - $PROJ_DIR$\Debug\Obj\RDKRL78_spi.pbi - $PROJ_DIR$\Debug\Obj\App_PassThroughSPI.pbi - $PROJ_DIR$\Debug\Obj\UART.r87 - $TOOLKIT_DIR$\inc\ior5f104pj_ext.h - $TOOLKIT_DIR$\inc\c\DLib_Threads.h - $PROJ_DIR$\Debug\Obj\probe_wifi.r87 - $PROJ_DIR$\Debug\Obj\eink_rdk_display.pbi - $PROJ_DIR$\Debug\Obj\cpu_bsp.pbi - $PROJ_DIR$\Debug\Exe\ADKRenesasG14.mot - $PROJ_DIR$\Debug\Obj\lib_str.r87 - $PROJ_DIR$\Debug\Obj\GSHAL.pbi - $PROJ_DIR$\applilet3_src\r_cg_macrodriver.h - $PROJ_DIR$\Debug\Obj\App_Startup.r87 - $PROJ_DIR$\Debug\Obj\led.pbi - $PROJ_DIR$\Debug\Obj\App_Startup.pbi - $PROJ_DIR$\Debug\Obj\UART.pbi - $PROJ_DIR$\Debug\Obj\lib_mem.r87 - $TOOLKIT_DIR$\inc\intrinsics.h - $PROJ_DIR$\Debug\Obj\r_cg_serial_user.r87 - $TOOLKIT_DIR$\lib\dlrl78nn2n.h - $PROJ_DIR$\Debug\Obj\EEPROM.r87 - $PROJ_DIR$\Debug\Obj\Temperature.pbi - $PROJ_DIR$\Debug\Obj\probe_com.r87 - $PROJ_DIR$\Debug\Obj\cpu_bsp.r87 - $TOOLKIT_DIR$\inc\c\stdarg.h - $TOOLKIT_DIR$\inc\c\ycheck.h - $PROJ_DIR$\Debug\Obj\I2C.pbi - $PROJ_DIR$\Debug\Obj\probe_com_os.pbi - $PROJ_DIR$\Debug\Obj\lcd.pbi - $PROJ_DIR$\Debug\Obj\EEPROM.pbi - $PROJ_DIR$\Debug\Obj\ADC.pbi - $PROJ_DIR$\Debug\Obj\probe_wifi_os.pbi - $PROJ_DIR$\Debug\Obj\AtCmdLib.pbi - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\Debug\Obj\Potentiometer.pbi - $PROJ_DIR$\Debug\Obj\lib_math.r87 - $PROJ_DIR$\Debug\Obj\AtCmdLib.r87 - $PROJ_DIR$\drv\r_cg_macrodriver.h - $PROJ_DIR$\Debug\Obj\Potentiometer.r87 - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $PROJ_DIR$\Debug\Obj\r_cg_serial.r87 - $PROJ_DIR$\Debug\Obj\r_cg_timer.r87 - $PROJ_DIR$\Debug\Obj\App_PassThroughSPI.r87 - $PROJ_DIR$\Debug\Obj\r_cg_timer_user.r87 - $PROJ_DIR$\Debug\Obj\App_ProgramMode.r87 - $PROJ_DIR$\Debug\Obj\jsmn.r87 - $PROJ_DIR$\Debug\Obj\NVSettings.pbi - $PROJ_DIR$\Debug\Obj\console.r87 - $PROJ_DIR$\Debug\Obj\eink_driver.r87 - $PROJ_DIR$\Debug\Obj\Switch.r87 - $PROJ_DIR$\Debug\Obj\Accelerometer.pbi - $PROJ_DIR$\Debug\Obj\GSHAL.r87 - $PROJ_DIR$\Debug\Obj\lib_ascii.pbi - $PROJ_DIR$\Debug\Obj\lcd.r87 - $PROJ_DIR$\Debug\Obj\cpu_core.r87 - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\Debug\Obj\user_app.pbi - Z:\Dropbox\Development\bugswarm-renesas\YRDKRL78G14\main.c + $PROJ_DIR$\Debug\Obj\GainSpan_IO.pbi + $PROJ_DIR$\Debug\Obj\LightSensor.r87 + $TOOLKIT_DIR$\inc\c\xlocaleuse.h + $PROJ_DIR$\Debug\Obj\Timer.pbi + $PROJ_DIR$\Debug\Obj\App_Swarm.pbi + $PROJ_DIR$\Debug\Obj\lib_math.pbi + $PROJ_DIR$\applilet3_src\r_cg_userdefine.h + $TOOLKIT_DIR$\inc\c\xlocale.h + $PROJ_DIR$\Debug\Obj\SPI _G14.pbi - $PROJ_DIR$\..\..\..\..\..\..\[ROOT_NODE] - - - XLINK - 143 169 182 - - - - - $PROJ_DIR$\..\Apps\App_ProgramMode.c + $PROJ_DIR$\..\Apps\App_Startup.c ICCRL78 - 218 + 113 BICOMP - 166 + 31 ICCRL78 - 119 199 160 213 193 162 117 178 125 123 80 94 96 156 177 191 84 90 92 68 82 14 95 + 190 42 220 203 36 222 188 107 128 155 213 149 148 181 176 180 216 106 34 90 56 58 194 86 5 178 51 10 94 BICOMP - 119 199 160 213 193 162 117 178 125 123 80 94 96 156 177 191 84 90 92 68 82 14 95 + 190 42 220 203 36 222 188 107 128 155 213 149 148 181 176 180 216 106 34 90 56 58 194 86 5 178 51 10 94 - $PROJ_DIR$\..\Apps\App_PassThroughSPI.c + $PROJ_DIR$\..\Apps\App_Swarm.c ICCRL78 - 216 + 159 BICOMP - 175 + 230 ICCRL78 - 119 199 160 213 193 162 117 178 125 123 80 94 96 156 177 191 84 90 14 68 10 8 + 190 42 220 203 36 222 188 107 149 155 181 128 213 148 41 176 180 216 106 34 90 56 58 194 86 5 178 51 10 94 60 84 73 75 79 77 3 24 69 207 232 72 2 BICOMP - 119 199 160 213 193 162 117 178 125 123 80 94 96 156 177 191 84 90 14 68 10 8 + 190 42 220 203 36 222 188 107 149 155 181 128 213 148 41 176 180 216 106 34 90 56 58 194 86 5 178 51 10 94 60 84 73 75 79 77 3 24 69 207 232 72 12 - $PROJ_DIR$\..\Apps\App_ProbeDemo.c + $PROJ_DIR$\..\ATCmdLib\AtCmdLib.c ICCRL78 - 103 + 206 BICOMP - 168 + 202 ICCRL78 - 119 199 160 213 193 162 117 178 125 229 148 153 141 207 113 161 164 142 108 131 105 123 80 94 96 156 177 191 84 90 8 68 14 88 10 75 7 15 42 38 22 26 19 29 33 25 35 28 16 21 20 198 152 163 115 31 + 190 42 220 203 36 222 188 107 181 128 155 213 148 149 201 233 221 224 228 137 164 194 86 5 10 176 180 216 106 34 90 56 BICOMP - 119 199 160 213 193 162 117 178 125 229 148 153 141 207 113 161 164 142 108 131 105 123 80 94 96 156 177 191 84 90 8 68 14 88 10 75 7 15 42 38 22 26 19 29 33 25 35 28 16 21 20 198 152 163 115 31 + 190 42 220 203 36 222 188 107 181 128 155 213 148 149 201 233 221 224 228 137 164 194 86 5 10 176 180 216 106 34 90 56 - $PROJ_DIR$\..\Apps\App_Startup.c + $PROJ_DIR$\..\GSHAL\GainSpan_SPI.c ICCRL78 - 186 + 136 BICOMP - 188 + 186 ICCRL78 - 119 199 160 213 193 162 117 178 229 148 153 142 141 125 94 96 156 177 191 84 90 15 123 80 8 95 68 14 88 + 148 42 220 203 36 222 188 107 155 176 180 216 106 34 90 190 181 56 175 86 7 194 BICOMP - 119 199 160 213 193 162 117 178 229 148 153 142 141 125 94 96 156 177 191 84 90 15 123 80 8 95 68 14 88 + 148 42 220 203 36 222 188 107 155 176 180 216 106 34 90 190 181 56 175 86 7 194 - $PROJ_DIR$\..\Apps\App_Swarm.c + $PROJ_DIR$\..\GSHAL\GSHAL.c ICCRL78 - 97 + 125 BICOMP - 110 + 30 ICCRL78 - 119 199 160 213 193 162 117 178 142 148 125 229 153 141 198 94 96 156 177 191 84 90 15 123 80 8 95 68 14 88 18 54 43 45 49 47 7 75 57 211 112 61 5 + 190 42 220 203 36 222 188 107 181 128 155 213 148 194 86 176 180 216 106 34 90 56 5 7 79 77 75 10 51 3 58 BICOMP - 119 199 160 213 193 162 117 178 142 148 125 229 153 141 198 94 96 156 177 191 84 90 15 123 80 8 95 68 14 88 18 54 43 45 49 47 7 75 57 211 112 61 5 + 190 42 220 203 36 222 188 107 181 128 155 213 148 194 86 176 180 216 106 34 90 56 5 7 79 77 75 10 51 3 58 - $PROJ_DIR$\..\ATCmdLib\AtCmdLib.c + $PROJ_DIR$\..\GSHAL\mstimer.c ICCRL78 - 210 + 189 BICOMP - 206 + 162 ICCRL78 - 119 199 160 213 193 162 117 178 125 229 148 153 141 142 207 113 161 164 108 131 105 123 80 8 14 94 96 156 177 191 84 90 + 181 176 180 216 106 34 90 190 42 220 203 36 222 188 107 56 88 10 BICOMP - 119 199 160 213 193 162 117 178 125 229 148 153 141 142 207 113 161 164 108 131 105 123 80 8 14 94 96 156 177 191 84 90 + 181 176 180 216 106 34 90 190 42 220 203 36 222 188 107 56 88 10 - $PROJ_DIR$\..\GSHAL\GainSpan_SPI.c + $PROJ_DIR$\..\GSHAL\NVSettings.c ICCRL78 - 130 + 225 BICOMP - 116 + 120 ICCRL78 - 141 199 160 213 193 162 117 178 148 94 96 156 177 191 84 119 125 90 92 80 10 123 + 181 190 42 220 203 36 222 188 107 148 155 149 176 180 216 106 34 90 56 58 194 86 5 BICOMP - 141 199 160 213 193 162 117 178 148 94 96 156 177 191 84 119 125 90 92 80 10 123 + 181 190 42 220 203 36 222 188 107 148 155 149 176 180 216 106 34 90 56 58 194 86 5 - $PROJ_DIR$\..\GSHAL\NVSettings.c + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_bsp.c ICCRL78 - 165 + 40 BICOMP - 220 + 110 ICCRL78 - 125 119 199 160 213 193 162 117 178 141 148 142 94 96 156 177 191 84 90 15 123 80 8 + 17 65 18 62 34 130 135 61 167 19 BICOMP - 125 119 199 160 213 193 162 117 178 141 148 142 94 96 156 177 191 84 90 15 123 80 8 + 17 65 18 62 34 130 135 61 167 19 - $PROJ_DIR$\..\GSHAL\GSHAL.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.c ICCRL78 - 225 + 184 BICOMP - 184 + 126 ICCRL78 - 119 199 160 213 193 162 117 178 125 229 148 153 141 123 80 94 96 156 177 191 84 90 8 10 49 47 45 14 68 7 15 + 19 65 18 62 34 130 BICOMP - 119 199 160 213 193 162 117 178 125 229 148 153 141 123 80 94 96 156 177 191 84 90 8 10 49 47 45 14 68 7 15 + 19 65 18 62 34 130 - $PROJ_DIR$\..\GSHAL\mstimer.c + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_core.c ICCRL78 - 118 + 129 BICOMP - 102 + 147 ICCRL78 - 125 94 96 156 177 191 84 119 199 160 213 193 162 117 178 90 82 14 + 17 65 18 62 34 130 135 61 167 19 BICOMP - 125 94 96 156 177 191 84 119 199 160 213 193 162 117 178 90 82 14 + 17 65 18 62 34 130 135 61 167 19 - $PROJ_DIR$\..\jsmn\jsmn.c + $PROJ_DIR$\drv\I2C.c ICCRL78 - 219 + 138 BICOMP - 114 + 195 ICCRL78 - 142 199 160 213 193 162 117 178 148 18 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 22 BICOMP - 142 199 160 213 193 162 117 178 148 18 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 22 - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_bsp.c + $PROJ_DIR$\drv\led.c ICCRL78 - 197 + 140 BICOMP - 181 + 29 ICCRL78 - 25 22 26 19 191 29 33 16 35 28 + 24 216 190 42 220 203 36 222 188 107 10 148 155 BICOMP - 25 22 26 19 191 29 33 16 35 28 + 24 216 190 42 220 203 36 222 188 107 10 148 155 - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_core.c + $PROJ_DIR$\drv\SPI _G14.c ICCRL78 - 228 + 102 BICOMP - 138 + 234 ICCRL78 - 25 22 26 19 191 29 33 16 35 28 + 148 42 220 203 36 222 188 107 155 176 180 216 106 34 90 190 181 56 25 86 BICOMP - 25 22 26 19 191 29 33 16 35 28 + 148 42 220 203 36 222 188 107 155 176 180 216 106 34 90 190 181 56 25 86 - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.c + $PROJ_DIR$\drv\RDKRL78_spi.c ICCRL78 - 128 + 163 BICOMP - 226 + 103 ICCRL78 - 28 22 26 19 191 29 + 181 207 216 106 34 190 42 220 203 36 222 188 107 81 182 28 BICOMP - 28 22 26 19 191 29 + 181 207 216 106 34 190 42 220 203 36 222 188 107 81 182 28 - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.c + $PROJ_DIR$\drv\Glyph\glyph_register.c ICCRL78 - 209 + 144 BICOMP - 109 + 96 ICCRL78 - 31 22 26 19 191 25 29 33 16 35 28 + 45 47 44 190 42 220 203 36 222 188 107 70 28 207 216 106 34 BICOMP - 31 22 26 19 191 25 29 33 16 35 28 + 45 47 44 190 42 220 203 36 222 188 107 70 28 207 216 106 34 - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.c + $PROJ_DIR$\drv\ADC.c ICCRL78 - 190 + 153 BICOMP - 158 + 197 ICCRL78 - 33 22 26 19 191 25 29 35 28 16 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 20 BICOMP - 33 22 26 19 191 25 29 35 28 16 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 20 - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.c + $PROJ_DIR$\drv\Glyph\lcd.c ICCRL78 - 183 + 127 BICOMP - 145 + 198 ICCRL78 - 35 22 26 19 191 29 28 16 + 128 42 220 203 36 222 188 107 155 213 148 190 51 45 47 44 BICOMP - 35 22 26 19 191 29 28 16 + 128 42 220 203 36 222 188 107 155 213 148 190 51 45 47 44 - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\OS\None\probe_com_os.c + $PROJ_DIR$\..\Apps\App_PassThroughSPI.c ICCRL78 - 132 + 116 BICOMP - 201 + 104 ICCRL78 - 38 22 26 19 191 29 33 25 35 28 16 21 + 190 42 220 203 36 222 188 107 181 194 86 176 180 216 106 34 90 56 10 51 7 5 BICOMP - 38 22 26 19 191 29 33 25 35 28 16 21 + 190 42 220 203 36 222 188 107 181 194 86 176 180 216 106 34 90 56 10 51 7 5 - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.c + $PROJ_DIR$\..\Apps\App_ProgramMode.c ICCRL78 - 196 + 118 BICOMP - 135 + 95 ICCRL78 - 38 22 26 19 191 29 33 25 35 28 16 21 + 190 42 220 203 36 222 188 107 181 194 86 176 180 216 106 34 90 56 175 51 88 10 178 BICOMP - 38 22 26 19 191 29 33 25 35 28 16 21 + 190 42 220 203 36 222 188 107 181 194 86 176 180 216 106 34 90 56 175 51 88 10 178 - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\OS\None\probe_wifi_os.c + $PROJ_DIR$\..\Apps\App_ProbeDemo.c ICCRL78 - 100 + 161 BICOMP - 205 + 97 ICCRL78 - 42 38 22 26 19 191 29 33 25 35 28 16 21 + 190 42 220 203 36 222 188 107 181 128 155 213 148 201 233 221 224 149 228 137 164 194 86 176 180 216 106 34 90 56 5 51 10 94 7 24 3 58 172 169 65 18 62 130 135 17 167 19 61 64 63 41 212 223 185 133 BICOMP - 42 38 22 26 19 191 29 33 25 35 28 16 21 + 190 42 220 203 36 222 188 107 181 128 155 213 148 201 233 221 224 149 228 137 164 194 86 176 180 216 106 34 90 56 5 51 10 94 7 24 3 58 172 169 65 18 62 130 135 17 167 19 61 64 63 41 212 223 185 133 - $PROJ_DIR$\..\sensors\Accelerometer.c + $PROJ_DIR$\system\EEPROM.c ICCRL78 - 139 + 37 BICOMP - 224 + 196 ICCRL78 - 125 119 199 160 213 193 162 117 178 141 148 229 153 43 73 14 + 190 42 220 203 36 222 188 107 10 22 181 BICOMP - 125 119 199 160 213 193 162 117 178 141 148 229 153 43 73 14 + 190 42 220 203 36 222 188 107 10 22 181 - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.c + $PROJ_DIR$\system\GainSpan_IO.c ICCRL78 - 179 + 215 BICOMP - 144 + 226 ICCRL78 - 42 38 22 26 19 191 29 33 25 35 28 16 21 8 119 199 160 213 193 162 117 178 125 7 15 123 80 94 96 156 177 84 90 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 86 175 BICOMP - 42 38 22 26 19 191 29 33 25 35 28 16 21 8 119 199 160 213 193 162 117 178 125 7 15 123 80 94 96 156 177 84 90 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 86 175 - $PROJ_DIR$\..\sensors\LightSensor.c + $PROJ_DIR$\..\jsmn\jsmn.c ICCRL78 - 107 + 119 BICOMP - 170 + 187 ICCRL78 - 125 119 199 160 213 193 162 117 178 141 148 229 153 45 73 14 + 149 42 220 203 36 222 188 107 155 60 BICOMP - 125 119 199 160 213 193 162 117 178 141 148 229 153 45 73 14 + 149 42 220 203 36 222 188 107 155 60 - $PROJ_DIR$\..\sensors\Potentiometer.c + $PROJ_DIR$\drv\EInk\eink_driver.c ICCRL78 - 212 + 122 BICOMP - 208 + 154 ICCRL78 - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 71 47 + 69 207 216 106 34 190 42 220 203 36 222 188 107 232 128 155 213 149 148 212 223 185 84 BICOMP - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 71 47 + 69 207 216 106 34 190 42 220 203 36 222 188 107 232 128 155 213 149 148 212 223 185 84 - $PROJ_DIR$\..\sensors\Temperature.c + $PROJ_DIR$\drv\EInk\eink_rdk_display.c ICCRL78 - 120 + 101 BICOMP - 195 + 109 ICCRL78 - 125 119 199 160 213 193 162 117 178 141 148 229 153 49 73 14 + 207 216 106 34 190 42 220 203 36 222 188 107 232 66 69 148 155 BICOMP - 125 119 199 160 213 193 162 117 178 141 148 229 153 49 73 14 + 207 216 106 34 190 42 220 203 36 222 188 107 232 66 69 148 155 - $PROJ_DIR$\applilet3_src\r_cg_serial.c + $PROJ_DIR$\drv\EInk\user_app.c ICCRL78 - 214 + 209 BICOMP - 150 + 13 ICCRL78 - 185 156 177 191 51 112 + 207 216 106 34 190 42 220 203 36 222 188 107 72 69 232 66 BICOMP - 185 156 177 191 51 112 + 207 216 106 34 190 42 220 203 36 222 188 107 72 69 232 66 - $PROJ_DIR$\applilet3_src\r_cg_serial_user.c + $PROJ_DIR$\..\sensors\LightSensor.c ICCRL78 - 192 + 227 BICOMP - 127 + 99 ICCRL78 - 185 156 177 191 51 112 + 181 190 42 220 203 36 222 188 107 148 155 128 213 75 22 10 BICOMP - 185 156 177 191 51 112 + 181 190 42 220 203 36 222 188 107 148 155 128 213 75 22 10 - $PROJ_DIR$\applilet3_src\r_cg_timer.c + $PROJ_DIR$\..\sensors\Potentiometer.c ICCRL78 - 215 + 204 BICOMP - 121 + 200 ICCRL78 - 185 156 177 191 54 112 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 20 77 BICOMP - 185 156 177 191 54 112 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 20 77 - $PROJ_DIR$\applilet3_src\r_cg_timer_user.c + $PROJ_DIR$\..\sensors\Temperature.c ICCRL78 - 217 + 191 BICOMP - 140 + 38 ICCRL78 - 185 156 177 191 54 112 + 181 190 42 220 203 36 222 188 107 148 155 128 213 79 22 10 BICOMP - 185 156 177 191 54 112 + 181 190 42 220 203 36 222 188 107 148 155 128 213 79 22 10 - $PROJ_DIR$\drv\EInk\eink_driver.c + $PROJ_DIR$\applilet3_src\r_cg_serial.c ICCRL78 - 222 + 208 BICOMP - 149 + 210 ICCRL78 - 57 211 156 177 191 119 199 160 213 193 162 117 178 112 229 148 153 142 141 152 163 115 54 + 114 216 106 34 81 232 BICOMP - 57 211 156 177 191 119 199 160 213 193 162 117 178 112 229 148 153 142 141 152 163 115 54 + 114 216 106 34 81 232 - $PROJ_DIR$\drv\EInk\eink_rdk_display.c + $PROJ_DIR$\applilet3_src\r_cg_serial_user.c ICCRL78 - 172 + 35 BICOMP - 180 + 183 ICCRL78 - 211 156 177 191 119 199 160 213 193 162 117 178 112 59 57 141 148 + 114 216 106 34 81 232 BICOMP - 211 156 177 191 119 199 160 213 193 162 117 178 112 59 57 141 148 + 114 216 106 34 81 232 - $PROJ_DIR$\drv\EInk\user_app.c + $PROJ_DIR$\applilet3_src\r_cg_timer.c ICCRL78 - 147 + 115 BICOMP - 230 + 192 ICCRL78 - 211 156 177 191 119 199 160 213 193 162 117 178 61 57 112 59 + 114 216 106 34 84 232 BICOMP - 211 156 177 191 119 199 160 213 193 162 117 178 61 57 112 59 + 114 216 106 34 84 232 - $PROJ_DIR$\drv\Glyph\glyph_register.c + $PROJ_DIR$\applilet3_src\r_cg_timer_user.c ICCRL78 - 137 + 117 BICOMP - 167 + 145 ICCRL78 - 63 64 66 119 199 160 213 193 162 117 178 62 77 211 156 177 191 + 114 216 106 34 84 232 BICOMP - 63 64 66 119 199 160 213 193 162 117 178 62 77 211 156 177 191 + 114 216 106 34 84 232 - $PROJ_DIR$\drv\Glyph\lcd.c + $PROJ_DIR$\drv\Timer.c ICCRL78 - 227 + 160 BICOMP - 202 + 229 ICCRL78 - 229 199 160 213 193 162 117 178 148 153 141 119 68 63 64 66 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 69 207 232 88 BICOMP - 229 199 160 213 193 162 117 178 148 153 141 119 68 63 64 66 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 69 207 232 88 - $PROJ_DIR$\drv\ADC.c + $PROJ_DIR$\drv\UART.c ICCRL78 - 146 + 105 BICOMP - 204 + 32 ICCRL78 - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 71 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 25 BICOMP - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 71 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 25 - $PROJ_DIR$\drv\I2C.c + $PROJ_DIR$\init\hwsetup.c ICCRL78 - 129 + 158 BICOMP - 200 + 219 ICCRL78 - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 73 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 92 BICOMP - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 73 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 92 - $PROJ_DIR$\drv\led.c + $PROJ_DIR$\system\console.c ICCRL78 - 133 + 121 BICOMP - 187 + 143 ICCRL78 - 75 156 119 199 160 213 193 162 117 178 14 141 148 + 41 42 220 203 36 222 188 107 148 155 128 213 176 180 216 106 34 90 190 181 56 BICOMP - 75 156 119 199 160 213 193 162 117 178 14 141 148 + 41 42 220 203 36 222 188 107 148 155 128 213 176 180 216 106 34 90 190 181 56 - $PROJ_DIR$\drv\RDKRL78_spi.c + $PROJ_DIR$\..\sensors\Accelerometer.c ICCRL78 - 101 + 146 BICOMP - 174 + 124 ICCRL78 - 125 211 156 177 191 119 199 160 213 193 162 117 178 51 126 77 + 181 190 42 220 203 36 222 188 107 148 155 128 213 73 22 10 BICOMP - 125 211 156 177 191 119 199 160 213 193 162 117 178 51 126 77 + 181 190 42 220 203 36 222 188 107 148 155 128 213 73 22 10 - $PROJ_DIR$\drv\SPI _G14.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.c ICCRL78 - 171 + 205 BICOMP - 122 + 231 ICCRL78 - 141 199 160 213 193 162 117 178 148 94 96 156 177 191 84 119 125 90 78 80 + 133 65 18 62 34 17 130 135 61 167 19 BICOMP - 141 199 160 213 193 162 117 178 148 94 96 156 177 191 84 119 125 90 78 80 + 133 65 18 62 34 17 130 135 61 167 19 - $PROJ_DIR$\drv\Timer.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.c ICCRL78 - 104 + 33 BICOMP - 111 + 218 ICCRL78 - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 57 211 112 82 + 135 65 18 62 34 17 130 167 19 61 BICOMP - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 57 211 112 82 + 135 65 18 62 34 17 130 167 19 61 - $PROJ_DIR$\drv\UART.c + $PROJ_DIR$\Debug\Exe\ADKRenesasG14.d87 - ICCRL78 - 176 + XLINK + 98 111 + + + + XLINK + 141 153 146 174 116 161 118 113 206 37 125 215 136 138 227 225 204 163 48 102 123 191 160 105 121 40 129 122 101 144 158 119 127 140 184 205 33 112 211 189 39 139 108 157 208 35 115 117 209 193 + + + + + $PROJ_DIR$\..\Apps\App_Dweet.c + BICOMP - 189 + 173 ICCRL78 - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 78 + 190 42 220 203 36 222 188 107 149 155 181 128 213 148 41 176 180 216 106 34 90 56 58 194 86 5 178 51 10 94 60 84 73 75 79 77 3 24 69 207 232 72 12 BICOMP - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 78 + 190 42 220 203 36 222 188 107 149 155 181 128 213 148 41 176 180 216 106 34 90 56 58 194 86 5 178 51 10 94 60 84 73 75 79 77 3 24 69 207 232 72 12 - $PROJ_DIR$\init\hwsetup.c + [ROOT_NODE] + + + XLINK + 150 98 111 + + + + + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.c ICCRL78 - 99 + 112 BICOMP - 159 + 152 ICCRL78 - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 86 + 167 65 18 62 34 130 19 61 BICOMP - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 86 + 167 65 18 62 34 130 19 61 - $PROJ_DIR$\system\console.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\OS\None\probe_com_os.c ICCRL78 - 221 + 139 BICOMP - 136 + 43 ICCRL78 - 198 199 160 213 193 162 117 178 141 148 229 153 94 96 156 177 191 84 119 125 90 + 169 65 18 62 34 130 135 17 167 19 61 64 BICOMP - 198 199 160 213 193 162 117 178 141 148 229 153 94 96 156 177 191 84 119 125 90 + 169 65 18 62 34 130 135 17 167 19 61 64 - $PROJ_DIR$\system\EEPROM.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.c ICCRL78 - 194 + 39 BICOMP - 203 + 142 ICCRL78 - 119 199 160 213 193 162 117 178 14 73 125 + 169 65 18 62 34 130 135 17 167 19 61 64 BICOMP - 119 199 160 213 193 162 117 178 14 73 125 + 169 65 18 62 34 130 135 17 167 19 61 64 - $PROJ_DIR$\system\GainSpan_IO.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\OS\None\probe_wifi_os.c ICCRL78 - 155 + 157 BICOMP - 106 + 199 ICCRL78 - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 80 92 + 172 169 65 18 62 34 130 135 17 167 19 61 64 BICOMP - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 80 92 + 172 169 65 18 62 34 130 135 17 167 19 61 64 - $PROJ_DIR$\system\Switch.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.c ICCRL78 - 223 + 108 BICOMP - 173 + 151 ICCRL78 - 125 95 94 96 156 177 191 84 119 199 160 213 193 162 117 178 90 + 172 169 65 18 62 34 130 135 17 167 19 61 64 5 190 42 220 203 36 222 188 107 181 3 58 194 86 176 180 216 106 90 56 BICOMP - 125 95 94 96 156 177 191 84 119 199 160 213 193 162 117 178 90 + 172 169 65 18 62 34 130 135 17 167 19 61 64 5 190 42 220 203 36 222 188 107 181 3 58 194 86 176 180 216 106 90 56 - $PROJ_DIR$\main.c + $PROJ_DIR$\system\Switch.c ICCRL78 - 151 + 123 BICOMP - 154 + 100 ICCRL78 - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 123 80 86 68 14 95 47 49 88 45 10 15 8 7 5 18 229 148 153 141 75 20 207 113 161 164 142 108 131 105 198 152 163 115 22 26 19 29 28 31 25 33 16 35 38 21 42 + 181 178 176 180 216 106 34 90 190 42 220 203 36 222 188 107 56 BICOMP - 94 96 156 177 191 84 119 199 160 213 193 162 117 178 125 90 123 80 86 68 14 95 47 49 88 45 10 15 8 7 5 18 229 148 153 141 75 20 207 113 161 164 142 108 131 105 198 152 163 115 22 26 19 29 28 31 25 33 16 35 38 21 42 + 181 178 176 180 216 106 34 90 190 42 220 203 36 222 188 107 56 - $PROJ_DIR$\Debug\Exe\ADKRenesasG14.d87 + $PROJ_DIR$\main.c - XLINK - 169 182 + ICCRL78 + 211 + + + BICOMP + 214 - XLINK - 134 146 139 216 103 218 186 97 210 194 225 155 130 129 107 165 212 101 69 171 223 120 104 176 221 197 228 222 172 137 99 219 227 133 128 209 190 183 151 118 196 132 179 100 214 192 215 217 147 124 + ICCRL78 + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 194 86 92 51 10 178 77 79 94 75 7 58 5 3 12 60 128 155 213 148 24 63 201 233 221 224 149 228 137 164 41 212 223 185 65 18 62 130 19 133 17 135 61 167 169 64 172 + + + BICOMP + 176 180 216 106 34 90 190 42 220 203 36 222 188 107 181 56 194 86 92 51 10 178 77 79 94 75 7 58 5 3 12 60 128 155 213 148 24 63 201 233 221 224 149 228 137 164 41 212 223 185 65 18 62 130 19 133 17 135 61 167 169 64 172 @@ -1348,35 +1370,87 @@ Release - $PROJ_DIR$\..\Apps\App_ProgramMode.c - $PROJ_DIR$\..\Apps\App_PassThroughSPI.c - $PROJ_DIR$\..\Apps\App_ProbeDemo.c $PROJ_DIR$\..\Apps\App_Startup.c $PROJ_DIR$\..\Apps\App_Swarm.c $PROJ_DIR$\..\Apps\App_Swarm.h - $PROJ_DIR$\..\ATCmdLib\AtCmdLib.c $PROJ_DIR$\..\Apps\Apps.h + $PROJ_DIR$\..\ATCmdLib\AtCmdLib.c $PROJ_DIR$\..\ATCmdLib\AtCmdLib.h $PROJ_DIR$\..\GSHAL\GainSpan_SPI.c $PROJ_DIR$\..\GSHAL\GainSpan_SPI.h - $PROJ_DIR$\..\GSHAL\NVSettings.c $PROJ_DIR$\..\GSHAL\GSHAL.c $PROJ_DIR$\..\GSHAL\mstimer.c $PROJ_DIR$\..\GSHAL\mstimer.h + $PROJ_DIR$\..\GSHAL\NVSettings.c + $PROJ_DIR$\Release\Obj\r_cg_serial.pbi + $PROJ_DIR$\Release\Obj\ADC.pbi + $PROJ_DIR$\Release\Obj\probe_com.pbi + $PROJ_DIR$\Release\Obj\cpu_core.pbi + $PROJ_DIR$\Release\Obj\r_cg_timer.pbi + $PROJ_DIR$\Release\Obj\r_cg_serial_user.pbi + $PROJ_DIR$\Release\Obj\r_cg_timer_user.pbi + $PROJ_DIR$\Release\Obj\eink_driver.pbi + $PROJ_DIR$\Release\Obj\eink_rdk_display.pbi + $PROJ_DIR$\Release\Obj\user_app.pbi + $PROJ_DIR$\Release\Obj\Accelerometer.pbi + $PROJ_DIR$\Release\Obj\glyph_register.pbi + $PROJ_DIR$\Release\Obj\lcd.pbi + $PROJ_DIR$\Release\Obj\r_cg_serial.r87 + $PROJ_DIR$\Release\Obj\GainSpan_IO.pbi + $PROJ_DIR$\Release\Obj\main.pbi + $PROJ_DIR$\Release\Obj\Switch.pbi + $PROJ_DIR$\Release\Obj\r_cg_timer.r87 + $PROJ_DIR$\Release\Obj\LightSensor.pbi + $PROJ_DIR$\Release\Obj\Potentiometer.pbi + $PROJ_DIR$\Release\Obj\GainSpan_SPI.pbi + $PROJ_DIR$\Release\Obj\jsmn.r87 + $PROJ_DIR$\Release\Obj\led.pbi + $PROJ_DIR$\Release\Obj\I2C.pbi + $PROJ_DIR$\Release\Obj\RDKRL78_spi.pbi + $PROJ_DIR$\Release\Obj\SPI _G14.pbi + $PROJ_DIR$\Release\Obj\Timer.pbi + $PROJ_DIR$\Release\Obj\UART.pbi + $PROJ_DIR$\Release\Obj\hwsetup.pbi + $PROJ_DIR$\Release\Obj\console.pbi + $PROJ_DIR$\Release\Obj\EEPROM.pbi + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_bsp.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.c + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_core.c + $PROJ_DIR$\drv\ADC.h + $PROJ_DIR$\drv\I2C.c + $PROJ_DIR$\drv\I2C.h + $PROJ_DIR$\drv\led.c + $PROJ_DIR$\drv\led.h + $PROJ_DIR$\drv\SAU.h + $PROJ_DIR$\drv\SPI _G14.c + $PROJ_DIR$\drv\RDKRL78_spi.c + $PROJ_DIR$\drv\RDKRL78_spi.h + $TOOLKIT_DIR$\inc\intrinsics.h + $TOOLKIT_DIR$\lib\dlrl78nn2n.h + $TOOLKIT_DIR$\inc\c\stdarg.h + $TOOLKIT_DIR$\inc\c\ycheck.h + $PROJ_DIR$\drv\Glyph\glyph_types.h + $PROJ_DIR$\drv\Glyph\Glyph_API.h + $PROJ_DIR$\drv\Glyph\glyph_register.c + $PROJ_DIR$\drv\Glyph\glyph_cfg.h + $PROJ_DIR$\drv\ADC.c + $PROJ_DIR$\drv\Glyph\lcd.c + $PROJ_DIR$\drv\Glyph\lcd.h + $PROJ_DIR$\..\Apps\App_PassThroughSPI.c + $PROJ_DIR$\..\Apps\App_ProgramMode.c + $PROJ_DIR$\..\Apps\App_ProbeDemo.c + $PROJ_DIR$\system\EEPROM.c + $PROJ_DIR$\system\GainSpan_IO.c $PROJ_DIR$\..\GSHAL\NVSettings.h $PROJ_DIR$\..\jsmn\jsmn.c $PROJ_DIR$\..\jsmn\jsmn.h - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_bsp.c - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_core.c - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.c - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.c - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.c - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.c - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\OS\None\probe_com_os.c - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.c - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\OS\None\probe_wifi_os.c - $PROJ_DIR$\..\sensors\Accelerometer.c - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.c + $PROJ_DIR$\drv\EInk\eink_rdk_display.h + $PROJ_DIR$\drv\EInk\eink_driver.c + $PROJ_DIR$\drv\EInk\eink_rdk_display.c + $PROJ_DIR$\drv\EInk\eink_driver.h + $PROJ_DIR$\drv\Glyph\Drivers\ST7579_LCD.h + $PROJ_DIR$\drv\EInk\user_app.c + $PROJ_DIR$\drv\EInk\user_app.h $PROJ_DIR$\..\sensors\Accelerometer.h $PROJ_DIR$\..\sensors\LightSensor.c $PROJ_DIR$\..\sensors\LightSensor.h @@ -1390,29 +1464,6 @@ $PROJ_DIR$\applilet3_src\r_cg_timer.c $PROJ_DIR$\applilet3_src\r_cg_timer.h $PROJ_DIR$\applilet3_src\r_cg_timer_user.c - $PROJ_DIR$\drv\EInk\eink_driver.c - $PROJ_DIR$\drv\EInk\eink_driver.h - $PROJ_DIR$\drv\EInk\eink_rdk_display.c - $PROJ_DIR$\drv\EInk\eink_rdk_display.h - $PROJ_DIR$\drv\EInk\user_app.c - $PROJ_DIR$\drv\EInk\user_app.h - $PROJ_DIR$\drv\Glyph\Drivers\ST7579_LCD.h - $PROJ_DIR$\drv\Glyph\Glyph_API.h - $PROJ_DIR$\drv\Glyph\glyph_cfg.h - $PROJ_DIR$\drv\Glyph\glyph_register.c - $PROJ_DIR$\drv\Glyph\glyph_types.h - $PROJ_DIR$\drv\Glyph\lcd.c - $PROJ_DIR$\drv\Glyph\lcd.h - $PROJ_DIR$\drv\ADC.c - $PROJ_DIR$\drv\ADC.h - $PROJ_DIR$\drv\I2C.c - $PROJ_DIR$\drv\I2C.h - $PROJ_DIR$\drv\led.c - $PROJ_DIR$\drv\led.h - $PROJ_DIR$\drv\RDKRL78_spi.c - $PROJ_DIR$\drv\RDKRL78_spi.h - $PROJ_DIR$\drv\SAU.h - $PROJ_DIR$\drv\SPI _G14.c $PROJ_DIR$\drv\SPI.h $PROJ_DIR$\drv\Timer.c $PROJ_DIR$\drv\Timer.h @@ -1421,66 +1472,8 @@ $PROJ_DIR$\init\hwsetup.c $PROJ_DIR$\init\hwsetup.h $PROJ_DIR$\system\console.c - $PROJ_DIR$\system\EEPROM.c - $PROJ_DIR$\system\GainSpan_IO.c - $PROJ_DIR$\system\GainSpan_IO.h - $PROJ_DIR$\system\Switch.c - $PROJ_DIR$\system\platform.h - $PROJ_DIR$\system\Switch.h - $PROJ_DIR$\system\YRDKRL78G14.h - $PROJ_DIR$\main.c - $TOOLKIT_DIR$\inc\c\wchar.h - $TOOLKIT_DIR$\inc\c\xlocaleuse.h - $PROJ_DIR$\applilet3_src\r_cg_userdefine.h - $TOOLKIT_DIR$\inc\c\xlocale.h - $TOOLKIT_DIR$\inc\c\xtgmath.h - $TOOLKIT_DIR$\inc\c\xencoding_limits.h - $TOOLKIT_DIR$\inc\c\stdint.h - $TOOLKIT_DIR$\inc\c\stdbool.h - $TOOLKIT_DIR$\inc\c\xlocale_c.h - $TOOLKIT_DIR$\inc\c\string.h - $TOOLKIT_DIR$\inc\c\stdlib.h - $TOOLKIT_DIR$\inc\c\ysizet.h - $TOOLKIT_DIR$\inc\c\math.h - $TOOLKIT_DIR$\inc\c\ystdio.h - $TOOLKIT_DIR$\inc\ior5f104pj.h - $TOOLKIT_DIR$\inc\c\yvals.h - $TOOLKIT_DIR$\inc\c\xtls.h - $TOOLKIT_DIR$\inc\DLib_Product.h - $TOOLKIT_DIR$\inc\c\ymath.h - $TOOLKIT_DIR$\inc\c\xmtx.h - $TOOLKIT_DIR$\inc\ior5f104pj_ext.h - $TOOLKIT_DIR$\inc\c\DLib_Threads.h - $PROJ_DIR$\applilet3_src\r_cg_macrodriver.h - $TOOLKIT_DIR$\inc\intrinsics.h - $TOOLKIT_DIR$\lib\dlrl78nn2n.h - $TOOLKIT_DIR$\inc\c\stdarg.h - $TOOLKIT_DIR$\inc\c\ycheck.h - $TOOLKIT_DIR$\inc\c\ctype.h - $PROJ_DIR$\drv\r_cg_macrodriver.h - $TOOLKIT_DIR$\inc\c\DLib_Defaults.h - $TOOLKIT_DIR$\inc\c\stdio.h - $PROJ_DIR$\Release\Obj\r_cg_serial.pbi - $PROJ_DIR$\Release\Obj\probe_com.pbi - $PROJ_DIR$\Release\Obj\ADC.pbi - $PROJ_DIR$\Release\Obj\cpu_core.pbi - $PROJ_DIR$\Release\Obj\r_cg_timer.pbi - $PROJ_DIR$\Release\Obj\r_cg_serial_user.pbi - $PROJ_DIR$\Release\Obj\r_cg_timer_user.pbi - $PROJ_DIR$\Release\Obj\eink_driver.pbi - $PROJ_DIR$\Release\Obj\eink_rdk_display.pbi - $PROJ_DIR$\Release\Obj\user_app.pbi - $PROJ_DIR$\Release\Obj\Accelerometer.pbi - $PROJ_DIR$\Release\Obj\glyph_register.pbi - $PROJ_DIR$\Release\Obj\lcd.pbi - $PROJ_DIR$\Release\Obj\r_cg_serial.r87 - $PROJ_DIR$\Release\Obj\Switch.pbi - $PROJ_DIR$\Release\Obj\main.pbi - $PROJ_DIR$\Release\Obj\GainSpan_IO.pbi - $PROJ_DIR$\Release\Obj\r_cg_timer.r87 $PROJ_DIR$\Release\Obj\r_cg_serial_user.r87 $PROJ_DIR$\Release\Obj\r_cg_timer_user.r87 - $PROJ_DIR$\Release\Exe\ADKRenesasG14.a87 $PROJ_DIR$\Release\Obj\probe_wifi.pbi $PROJ_DIR$\Release\Obj\lib_ascii.pbi $PROJ_DIR$\Release\Obj\App_PassThroughSPI.pbi @@ -1501,102 +1494,64 @@ $PROJ_DIR$\Release\Obj\GSHAL.pbi $PROJ_DIR$\Release\Obj\probe_wifi_os.pbi $PROJ_DIR$\Release\Obj\Temperature.pbi - $PROJ_DIR$\Release\Obj\LightSensor.pbi - $PROJ_DIR$\Release\Obj\Potentiometer.pbi - $PROJ_DIR$\Release\Obj\GainSpan_SPI.pbi - $PROJ_DIR$\Release\Obj\jsmn.r87 - $PROJ_DIR$\Release\Obj\led.pbi - $PROJ_DIR$\Release\Obj\I2C.pbi - $PROJ_DIR$\Release\Obj\RDKRL78_spi.pbi - $PROJ_DIR$\Release\Obj\SPI _G14.pbi - $PROJ_DIR$\Release\Obj\Timer.pbi - $PROJ_DIR$\Release\Obj\UART.pbi - $PROJ_DIR$\Release\Obj\hwsetup.pbi - $PROJ_DIR$\Release\Obj\console.pbi - $PROJ_DIR$\Release\Obj\EEPROM.pbi - - - $PROJ_DIR$\..\..\..\..\..\..\[ROOT_NODE] - - - XLINK - 132 - - - - - $PROJ_DIR$\..\Apps\App_ProgramMode.c - - - BICOMP - 137 - - - - - ICCRL78 - 87 107 96 110 105 98 86 102 88 - - - BICOMP - 87 107 96 110 105 98 86 102 88 - - - - - $PROJ_DIR$\..\Apps\App_PassThroughSPI.c - - - BICOMP - 135 - - - - - ICCRL78 - 87 107 96 110 105 98 86 102 88 - - - BICOMP - 87 107 96 110 105 98 86 102 88 - - - - - $PROJ_DIR$\..\Apps\App_ProbeDemo.c - - - BICOMP - 144 - - - - - ICCRL78 - 87 107 96 110 105 98 86 102 88 111 92 94 90 108 84 97 100 91 82 89 81 - - - BICOMP - 87 107 96 110 105 98 86 102 88 111 92 94 90 108 84 97 100 91 82 89 81 7 - - - + $TOOLKIT_DIR$\inc\ior5f104pj_ext.h + $TOOLKIT_DIR$\inc\c\DLib_Threads.h + $PROJ_DIR$\applilet3_src\r_cg_macrodriver.h + $TOOLKIT_DIR$\inc\c\stdio.h + $PROJ_DIR$\..\sensors\Accelerometer.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.c + $TOOLKIT_DIR$\inc\c\xlocale_c.h + $TOOLKIT_DIR$\inc\c\string.h + $TOOLKIT_DIR$\inc\c\stdlib.h + $TOOLKIT_DIR$\inc\c\ysizet.h + $TOOLKIT_DIR$\inc\c\wchar.h + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\OS\None\probe_com_os.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\OS\None\probe_wifi_os.c + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.c + $PROJ_DIR$\system\GainSpan_IO.h + $PROJ_DIR$\system\platform.h + $PROJ_DIR$\system\Switch.c + $PROJ_DIR$\system\Switch.h + $PROJ_DIR$\main.c + $PROJ_DIR$\system\YRDKRL78G14.h + $TOOLKIT_DIR$\inc\c\stdbool.h + $TOOLKIT_DIR$\inc\c\xtgmath.h + $TOOLKIT_DIR$\inc\c\xencoding_limits.h + $TOOLKIT_DIR$\inc\c\stdint.h + $TOOLKIT_DIR$\inc\c\ctype.h + $TOOLKIT_DIR$\inc\c\DLib_Defaults.h + $PROJ_DIR$\drv\r_cg_macrodriver.h + $TOOLKIT_DIR$\inc\c\math.h + $TOOLKIT_DIR$\inc\c\ystdio.h + $TOOLKIT_DIR$\inc\ior5f104pj.h + $TOOLKIT_DIR$\inc\c\yvals.h + $TOOLKIT_DIR$\inc\c\xtls.h + $TOOLKIT_DIR$\inc\DLib_Product.h + $TOOLKIT_DIR$\inc\c\ymath.h + $TOOLKIT_DIR$\inc\c\xmtx.h + $TOOLKIT_DIR$\inc\c\xlocaleuse.h + $PROJ_DIR$\applilet3_src\r_cg_userdefine.h + $TOOLKIT_DIR$\inc\c\xlocale.h + $PROJ_DIR$\..\Apps\App_Startup.c BICOMP - 138 + 109 ICCRL78 - 87 107 96 110 105 98 86 102 111 92 94 91 90 88 + 150 58 157 152 56 159 149 125 127 134 155 133 132 147 BICOMP - 87 107 96 110 105 98 86 102 111 92 94 91 90 88 + 150 58 157 152 56 159 149 125 127 134 155 133 132 147 @@ -1605,17 +1560,17 @@ BICOMP - 139 + 110 ICCRL78 - 87 107 96 110 105 98 86 102 91 92 88 111 94 90 106 + 150 58 157 152 56 159 149 125 133 134 147 127 155 132 57 BICOMP - 87 107 96 110 105 98 86 102 91 92 88 111 94 90 106 7 5 + 150 58 157 152 56 159 149 125 133 134 147 127 155 132 57 3 2 @@ -1624,17 +1579,17 @@ BICOMP - 140 + 111 ICCRL78 - 87 107 96 110 105 98 86 102 88 111 92 94 90 91 108 84 97 100 82 89 81 + 150 58 157 152 56 159 149 125 147 127 134 155 132 133 151 164 158 161 162 131 135 BICOMP - 87 107 96 110 105 98 86 102 88 111 92 94 90 91 108 84 97 100 82 89 81 8 + 150 58 157 152 56 159 149 125 147 127 134 155 132 133 151 164 158 161 162 131 135 5 @@ -1643,106 +1598,92 @@ BICOMP - 155 + 32 ICCRL78 - 90 107 96 110 105 98 86 102 92 + 132 58 157 152 56 159 149 125 134 BICOMP - 90 107 96 110 105 98 86 102 92 10 87 88 + 132 58 157 152 56 159 149 125 134 7 150 147 - $PROJ_DIR$\..\GSHAL\NVSettings.c + $PROJ_DIR$\..\GSHAL\GSHAL.c BICOMP - 142 + 121 ICCRL78 - 88 87 107 96 110 105 98 86 102 90 92 91 + 150 58 157 152 56 159 149 125 147 127 134 155 132 BICOMP - 88 87 107 96 110 105 98 86 102 90 92 91 15 + 150 58 157 152 56 159 149 125 147 127 134 155 132 - $PROJ_DIR$\..\GSHAL\GSHAL.c + $PROJ_DIR$\..\GSHAL\mstimer.c BICOMP - 150 + 112 ICCRL78 - 87 107 96 110 105 98 86 102 88 111 92 94 90 + 147 BICOMP - 87 107 96 110 105 98 86 102 88 111 92 94 90 + 147 10 150 58 157 152 56 159 149 125 - $PROJ_DIR$\..\GSHAL\mstimer.c + $PROJ_DIR$\..\GSHAL\NVSettings.c BICOMP - 141 + 113 ICCRL78 - 88 + 147 150 58 157 152 56 159 149 125 132 134 133 BICOMP - 88 14 87 107 96 110 105 98 86 102 + 147 150 58 157 152 56 159 149 125 132 134 133 71 - $PROJ_DIR$\..\jsmn\jsmn.c + $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_bsp.c - - ICCRL78 - 156 - BICOMP - 143 + 116 - - - ICCRL78 - 91 107 96 110 105 98 86 102 92 17 - - - BICOMP - 91 107 96 110 105 98 86 102 92 17 - - - $PROJ_DIR$\..\Micrium\Software\uC-CPU\cpu_bsp.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.c BICOMP - 145 + 105 @@ -1751,243 +1692,254 @@ BICOMP - 115 + 15 - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_ascii.c + $PROJ_DIR$\drv\I2C.c BICOMP - 134 + 35 - - - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.c - + BICOMP - 146 + 48 150 58 157 152 56 159 149 125 147 - + - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.c + $PROJ_DIR$\drv\led.c BICOMP - 147 + 34 - - - $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.c - + + + ICCRL78 + 50 156 150 58 157 152 56 159 149 125 + BICOMP - 148 + 50 156 150 58 157 152 56 159 149 125 132 134 - + - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\OS\None\probe_com_os.c + $PROJ_DIR$\drv\SPI _G14.c BICOMP - 149 + 37 - - - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.c - + + + ICCRL78 + 132 58 157 152 56 159 149 125 134 + BICOMP - 113 + 132 58 157 152 56 159 149 125 134 51 94 150 147 - + - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\OS\None\probe_wifi_os.c + $PROJ_DIR$\drv\RDKRL78_spi.c BICOMP - 151 + 36 + + + ICCRL78 + 147 153 156 124 55 150 58 157 152 56 159 149 125 + + + BICOMP + 147 153 156 124 55 150 58 157 152 56 159 149 125 54 + + - $PROJ_DIR$\..\sensors\Accelerometer.c + $PROJ_DIR$\drv\Glyph\glyph_register.c BICOMP - 122 + 23 ICCRL78 - 88 87 107 96 110 105 98 86 102 90 92 111 94 29 + 60 62 59 150 58 157 152 56 159 149 125 78 BICOMP - 88 87 107 96 110 105 98 86 102 90 92 111 94 29 + 60 62 59 150 58 157 152 56 159 149 125 78 - $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.c + $PROJ_DIR$\drv\ADC.c BICOMP - 133 + 13 + + + BICOMP + 46 150 58 157 152 56 159 149 125 + + - $PROJ_DIR$\..\sensors\LightSensor.c + $PROJ_DIR$\drv\Glyph\lcd.c + + ICCRL78 + 107 + BICOMP - 153 + 24 ICCRL78 - 88 87 107 96 110 105 98 86 102 90 92 111 94 31 + 127 58 157 152 56 159 149 125 134 155 132 150 65 60 62 59 BICOMP - 88 87 107 96 110 105 98 86 102 90 92 111 94 31 + 127 58 157 152 56 159 149 125 134 155 132 150 65 60 62 59 - $PROJ_DIR$\..\sensors\Potentiometer.c + $PROJ_DIR$\..\Apps\App_PassThroughSPI.c BICOMP - 154 + 106 + + ICCRL78 + 150 58 157 152 56 159 149 125 147 + BICOMP - 33 87 107 96 110 105 98 86 102 + 150 58 157 152 56 159 149 125 147 - $PROJ_DIR$\..\sensors\Temperature.c + $PROJ_DIR$\..\Apps\App_ProgramMode.c BICOMP - 152 + 108 ICCRL78 - 88 87 107 96 110 105 98 86 102 90 92 111 94 35 + 150 58 157 152 56 159 149 125 147 BICOMP - 88 87 107 96 110 105 98 86 102 90 92 111 94 35 + 150 58 157 152 56 159 149 125 147 - $PROJ_DIR$\applilet3_src\r_cg_serial.c + $PROJ_DIR$\..\Apps\App_ProbeDemo.c - - ICCRL78 - 125 - BICOMP - 112 + 115 ICCRL78 - 103 95 101 104 37 83 + 150 58 157 152 56 159 149 125 147 127 134 155 132 151 164 158 161 133 162 131 135 BICOMP - 103 95 101 104 37 83 + 150 58 157 152 56 159 149 125 147 127 134 155 132 151 164 158 161 133 162 131 135 3 - $PROJ_DIR$\applilet3_src\r_cg_serial_user.c + $PROJ_DIR$\system\EEPROM.c - - ICCRL78 - 130 - BICOMP - 117 + 42 ICCRL78 - 103 95 101 104 37 83 + 150 58 157 152 56 159 149 125 BICOMP - 103 95 101 104 37 83 + 150 58 157 152 56 159 149 125 - $PROJ_DIR$\applilet3_src\r_cg_timer.c + $PROJ_DIR$\system\GainSpan_IO.c - - ICCRL78 - 129 - BICOMP - 116 + 26 ICCRL78 - 103 95 101 104 40 83 + 142 146 156 124 55 BICOMP - 103 95 101 104 40 83 + 142 146 156 124 55 141 - $PROJ_DIR$\applilet3_src\r_cg_timer_user.c + $PROJ_DIR$\..\jsmn\jsmn.c ICCRL78 - 131 + 33 BICOMP - 118 + 114 ICCRL78 - 103 95 101 104 40 83 + 133 58 157 152 56 159 149 125 134 73 BICOMP - 103 95 101 104 40 83 + 133 58 157 152 56 159 149 125 134 73 @@ -1996,17 +1948,17 @@ BICOMP - 119 + 19 ICCRL78 - 43 + 77 BICOMP - 43 111 107 96 110 105 98 86 102 92 94 91 90 93 99 85 + 77 127 58 157 152 56 159 149 125 134 155 133 132 154 160 148 @@ -2015,13 +1967,13 @@ BICOMP - 120 + 20 BICOMP - 45 43 90 107 96 110 105 98 86 102 92 + 74 77 132 58 157 152 56 159 149 125 134 @@ -2030,142 +1982,158 @@ BICOMP - 121 + 21 BICOMP - 47 43 45 + 80 77 74 - $PROJ_DIR$\drv\Glyph\glyph_register.c + $PROJ_DIR$\..\sensors\LightSensor.c BICOMP - 123 + 30 ICCRL78 - 49 50 52 87 107 96 110 105 98 86 102 48 + 147 150 58 157 152 56 159 149 125 132 134 127 155 83 BICOMP - 49 50 52 87 107 96 110 105 98 86 102 48 + 147 150 58 157 152 56 159 149 125 132 134 127 155 83 - $PROJ_DIR$\drv\Glyph\lcd.c + $PROJ_DIR$\..\sensors\Potentiometer.c - - ICCRL78 - 136 - BICOMP - 124 + 31 - - ICCRL78 - 111 107 96 110 105 98 86 102 92 94 90 87 54 49 50 52 - BICOMP - 111 107 96 110 105 98 86 102 92 94 90 87 54 49 50 52 + 85 150 58 157 152 56 159 149 125 - $PROJ_DIR$\drv\ADC.c + $PROJ_DIR$\..\sensors\Temperature.c BICOMP - 114 + 123 + + ICCRL78 + 147 150 58 157 152 56 159 149 125 132 134 127 155 87 + BICOMP - 56 87 107 96 110 105 98 86 102 + 147 150 58 157 152 56 159 149 125 132 134 127 155 87 - $PROJ_DIR$\drv\I2C.c + $PROJ_DIR$\applilet3_src\r_cg_serial.c + + ICCRL78 + 25 + BICOMP - 158 + 12 + + ICCRL78 + 126 156 124 55 89 163 + BICOMP - 58 87 107 96 110 105 98 86 102 88 + 126 156 124 55 89 163 - $PROJ_DIR$\drv\led.c + $PROJ_DIR$\applilet3_src\r_cg_serial_user.c + + ICCRL78 + 102 + BICOMP - 157 + 17 ICCRL78 - 60 95 87 107 96 110 105 98 86 102 + 126 156 124 55 89 163 BICOMP - 60 95 87 107 96 110 105 98 86 102 90 92 + 126 156 124 55 89 163 - $PROJ_DIR$\drv\RDKRL78_spi.c + $PROJ_DIR$\applilet3_src\r_cg_timer.c + + ICCRL78 + 29 + BICOMP - 159 + 16 ICCRL78 - 88 109 95 101 104 87 107 96 110 105 98 86 102 + 126 156 124 55 92 163 BICOMP - 88 109 95 101 104 87 107 96 110 105 98 86 102 62 + 126 156 124 55 92 163 - $PROJ_DIR$\drv\SPI _G14.c + $PROJ_DIR$\applilet3_src\r_cg_timer_user.c + + ICCRL78 + 103 + BICOMP - 160 + 18 ICCRL78 - 90 107 96 110 105 98 86 102 92 + 126 156 124 55 92 163 BICOMP - 90 107 96 110 105 98 86 102 92 63 65 87 88 + 126 156 124 55 92 163 @@ -2174,13 +2142,13 @@ BICOMP - 161 + 38 BICOMP - 67 95 87 107 96 110 105 98 86 102 + 96 156 150 58 157 152 56 159 149 125 @@ -2189,13 +2157,13 @@ BICOMP - 162 + 39 BICOMP - 63 69 87 107 96 110 105 98 86 102 88 + 51 98 150 58 157 152 56 159 149 125 147 @@ -2204,13 +2172,13 @@ BICOMP - 163 + 40 BICOMP - 71 87 107 96 110 105 98 86 102 88 + 100 150 58 157 152 56 159 149 125 147 @@ -2219,74 +2187,118 @@ BICOMP - 164 + 41 ICCRL78 - 106 107 96 110 105 98 86 102 90 92 111 94 + 57 58 157 152 56 159 149 125 132 134 127 155 BICOMP - 106 107 96 110 105 98 86 102 90 92 111 94 + 57 58 157 152 56 159 149 125 132 134 127 155 - $PROJ_DIR$\system\EEPROM.c + $PROJ_DIR$\..\sensors\Accelerometer.c BICOMP - 165 + 22 ICCRL78 - 87 107 96 110 105 98 86 102 + 147 150 58 157 152 56 159 149 125 132 134 127 155 81 BICOMP - 87 107 96 110 105 98 86 102 + 147 150 58 157 152 56 159 149 125 132 134 127 155 81 - $PROJ_DIR$\system\GainSpan_IO.c + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_math.c BICOMP - 128 + 117 - + + + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_mem.c + - ICCRL78 - 77 79 95 101 104 + BICOMP + 118 + + + + $PROJ_DIR$\..\Micrium\Software\uC-LIB\lib_str.c + BICOMP - 77 79 95 101 104 75 + 119 - + + + + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\OS\None\probe_com_os.c + + + BICOMP + 120 + + + + + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\Source\probe_com.c + + + BICOMP + 14 + + + + + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\OS\None\probe_wifi_os.c + + + BICOMP + 122 + + + + + $PROJ_DIR$\..\Micrium\Software\uC-Probe\Target\Communication\Generic\WiFi\Source\probe_wifi.c + + + BICOMP + 104 + + $PROJ_DIR$\system\Switch.c BICOMP - 126 + 28 ICCRL78 - 88 78 77 79 95 101 104 + 147 144 142 146 156 124 55 BICOMP - 88 78 77 79 95 101 104 + 147 144 142 146 156 124 55 @@ -2295,13 +2307,13 @@ BICOMP - 127 + 27 BICOMP - 111 107 96 110 105 98 86 102 92 94 90 78 88 + 127 58 157 152 56 159 149 125 134 155 132 144 147 diff --git a/YRDKRL78G14/ADKRenesasG14.ewp b/YRDKRL78G14/ADKRenesasG14.ewp old mode 100644 new mode 100755 index a33059e..f297d46 --- a/YRDKRL78G14/ADKRenesasG14.ewp +++ b/YRDKRL78G14/ADKRenesasG14.ewp @@ -1793,22 +1793,22 @@ Apps - $PROJ_DIR$\..\Apps\App_PassThroughSPI.c + $PROJ_DIR$\..\Apps\App_Dweet.c - $PROJ_DIR$\..\Apps\App_ProbeDemo.c + $PROJ_DIR$\..\Apps\App_Dweet.h - $PROJ_DIR$\..\Apps\App_ProgramMode.c + $PROJ_DIR$\..\Apps\App_PassThroughSPI.c - $PROJ_DIR$\..\Apps\App_Startup.c + $PROJ_DIR$\..\Apps\App_ProbeDemo.c - $PROJ_DIR$\..\Apps\App_Swarm.c + $PROJ_DIR$\..\Apps\App_ProgramMode.c - $PROJ_DIR$\..\Apps\App_Swarm.h + $PROJ_DIR$\..\Apps\App_Startup.c $PROJ_DIR$\..\Apps\Apps.h diff --git a/YRDKRL78G14/init/hwsetup.c b/YRDKRL78G14/init/hwsetup.c old mode 100644 new mode 100755 index a81c602..b2316a3 --- a/YRDKRL78G14/init/hwsetup.c +++ b/YRDKRL78G14/init/hwsetup.c @@ -100,6 +100,7 @@ void ConfigureOutputPorts(void) P14 = 0xDF; /* LCD_CS 0xFE */ /*G14 -> P145 */ /* Set Output Port Modes */ PM14 = 0xDF; /* LCD CS 0xFE */ /*G14 -> P145 */ + ADPC = 0x01; #if 0 P3 = 0xFE; /* SD CS */ diff --git a/YRDKRL78G14/main.c b/YRDKRL78G14/main.c old mode 100644 new mode 100755 index 42804f2..2e24ef3 --- a/YRDKRL78G14/main.c +++ b/YRDKRL78G14/main.c @@ -25,7 +25,7 @@ #include #include #include -#include +#include #include "stdio.h" #include "string.h" #include "led.h" @@ -62,15 +62,13 @@ __root const uint8_t secuid[10] = *-------------------------------------------------------------------------*/ /* Application Modes */ typedef enum { - PROGRAM_MODE, - UART_PT_MODE, - SPI_PT_MODE, - RUN_MY_TEST, - RUN_PROVISIONING, - RUN_OVER_AIR_DOWNLOAD, - GAINSPAN_DEMO, - RUN_PROBE, - SWARM_CONN_MODE // RUN_BugLab + GAINSPAN_DEMO=0, + DWEET_CONN_MODE, + RUN_PROVISIONING, + PROGRAM_MODE, + RUN_PROBE, + GAINSPAN_CLIENT, + SPI_PT_MODE, }AppMode_T; typedef enum { @@ -114,37 +112,30 @@ int main(void) /* Default app mode */ //AppMode = GAINSPAN_DEMO; - AppMode = SWARM_CONN_MODE; + AppMode = DWEET_CONN_MODE; /* Determine SW1, SW2 & SW3 is pressed at power up to dertmine which demo will run */ - /*if(Switch1IsPressed() && Switch2IsPressed() && Switch3IsPressed()) + if(Switch1IsPressed()) { - AppMode = SWARM_CONN_MODE; + AppMode = GAINSPAN_DEMO; } else if(Switch1IsPressed() && Switch2IsPressed()) { AppMode = PROGRAM_MODE; } - else if(Switch1IsPressed() && Switch3IsPressed()) - { - isLimiteAPmode=0; // run the WiFi client demo - } else if(Switch2IsPressed() && Switch3IsPressed()) { AppMode = SPI_PT_MODE; // run as the Gainspan Eval board } - else if(Switch1IsPressed()) - { - AppMode = RUN_MY_TEST; - } - else*/ if(Switch2IsPressed()) + else if(Switch2IsPressed()) { AppMode = RUN_PROVISIONING; } - /*else if(Switch3IsPressed()) + else if(Switch3IsPressed()) { - AppMode = RUN_PROBE; - } */ + AppMode = GAINSPAN_DEMO; + isLimiteAPmode=0; // run the WiFi client demo this should be GS demo via shared network (provisioned) + } /************************initializa LCD module********************************/ SPI2_Init(); @@ -164,42 +155,36 @@ int main(void) PM15 &= ~(1 << 2); //EInk hand P15 &= ~(1 << 2); + LCDDisplayLogo(); + LCDSelectFont(FONT_SMALL); + DisplayLCD(LCD_LINE3, " VERIZON DEMO "); + DisplayLCD(LCD_LINE4, " Wi-Fi & Cloud "); + DisplayLCD(LCD_LINE5, " connectivity "); + DisplayLCD(LCD_LINE6, "Gainspan "); + DisplayLCD(LCD_LINE7, "BugLabs-Dweet "); + DisplayLCD(LCD_LINE8, "Arrow Electronics "); + MSTimerDelay(3500); + ClearLCD(); + DisplayLCD(LCD_LINE1, "SW Config after RST"); + DisplayLCD(LCD_LINE2, "1 2 3 "); + DisplayLCD(LCD_LINE3, "0 0 0 BugLabs Dweet Demo "); + DisplayLCD(LCD_LINE4, "1 0 0 GS AP Demo "); + DisplayLCD(LCD_LINE5, "0 1 0 Provisioning "); + DisplayLCD(LCD_LINE6, "0 0 1 GS Clnt Demo "); + DisplayLCD(LCD_LINE7, " "); + DisplayLCD(LCD_LINE8, " "); + MSTimerDelay(5000); + ClearLCD(); + if(AppMode == SPI_PT_MODE) App_PassThroughSPI(); // run SPI pass through, so the board can be used as a GS eval board if(AppMode == PROGRAM_MODE) { App_ProgramMode(); // Program GS1011 firmware and external flash } - if(AppMode == GAINSPAN_DEMO) { - LCDDisplayLogo(); - LCDSelectFont(FONT_SMALL); - DisplayLCD(LCD_LINE3, "RL78G14 RDK V3.4"); - DisplayLCD(LCD_LINE4, " Wi-Fi & Cloud "); - DisplayLCD(LCD_LINE5, " demos by: "); - DisplayLCD(LCD_LINE6, "Gainspan "); - DisplayLCD(LCD_LINE7, "Test "); - DisplayLCD(LCD_LINE8, "Future Designs, Inc"); - MSTimerDelay(3500); - ClearLCD(); - DisplayLCD(LCD_LINE1, "Demo Modes: "); - DisplayLCD(LCD_LINE2, "-RST no key: "); - DisplayLCD(LCD_LINE3, " GS Web Server "); - DisplayLCD(LCD_LINE4, "-RST + SW1: "); - DisplayLCD(LCD_LINE5, " Test AP "); - DisplayLCD(LCD_LINE6, "-RST + SW2: "); - DisplayLCD(LCD_LINE7, "Provisioning & OTA "); - DisplayLCD(LCD_LINE8, "-RST + SW3: uCProbe"); - MSTimerDelay(3000); - ClearLCD(); - + if(AppMode == GAINSPAN_DEMO) { LCDSelectFont(FONT_LARGE); } - - if (AppMode == RUN_MY_TEST) - { - DisplayLCD(LCD_LINE1, " MY TEST "); - LimitedAP_TCP_SereverBulkMode(); // Run my testing - } else if(AppMode == RUN_PROVISIONING) { App_WebProvisioning_OverAirPush(); // run provisioning and over air upgrade @@ -208,10 +193,10 @@ int main(void) { App_ProbeDemo(); // Run the uC/Probe demo. } - else if (AppMode == SWARM_CONN_MODE ) + else if (AppMode == DWEET_CONN_MODE ) { - LCDSelectFont(FONT_SMALL); - App_SwarmConnector(); + LCDSelectFont(FONT_SMALL); + App_DweetConnector(); } else {