diff --git a/project/example/ble/ble_peripheral/app/src/arch_main.c b/project/example/ble/ble_peripheral/app/src/arch_main.c index 851318f..501a79f 100644 --- a/project/example/ble/ble_peripheral/app/src/arch_main.c +++ b/project/example/ble/ble_peripheral/app/src/arch_main.c @@ -50,6 +50,7 @@ #include "switch_s.h" #include "key.h" #include "fmc_spi_1.h" +#include "rf433_decoder.h" /** **************************************************************************************** * @addtogroup DRIVERS @@ -268,6 +269,7 @@ void board_init() chx_gpio_init(); app_key_init(); switch_init(); + rf433_decoder_init(); #if (POWER_ON) power_on_check(); diff --git a/project/example/ble/ble_peripheral/app/src/rf433.c b/project/example/ble/ble_peripheral/app/src/rf433.c index 113054f..a37c3f4 100644 --- a/project/example/ble/ble_peripheral/app/src/rf433.c +++ b/project/example/ble/ble_peripheral/app/src/rf433.c @@ -1,4 +1,5 @@ #include "rf433.h" +#include #include "xc_drv_gpio.h" #include "key.h" #include "led.h" @@ -6,11 +7,12 @@ #include "switch_s.h" #include "timeslice.h" #include "dbg.h" +#include "rf433_decoder.h" //用bit表示通道 #define CH_GPIO2 0x01 #define CH_GPIO5 0x10 - +Rf433DecoderFrame_t rf433_frame; uint32_t receive_temp; uint32_t receive_data; @@ -23,6 +25,8 @@ uint8_t key_state=0; uint8_t KEY_STATE_re=0; // 长按 uint8_t long_flag_s=0; +uint8_t receive_finsh_flag=0; + static uint8_t power=2; uint8_t res_data=255; //433返回的最后一个控制字节(低八位) @@ -43,6 +47,12 @@ uint8_t flash_ch2_state=0; union rf433_flag rf_flag = {0}; + +#define rf433_long_time 500 +uint16_t long_timer=0; +uint8_t last_H_adress=0; +uint8_t last_L_adress=0; + typedef struct { uint32_t KEY_STATE_Click; // 单击 uint32_t KEY_STATE_LONG_PRESS; // 长按 @@ -305,8 +315,8 @@ void ble_mode_scan(void) void _433_fun(void) { - if(Key_TypeDef.KEY_STATE_Click==1||KEY_STATE_re==1) return; - set_click(); //设置单击长按 +// if(Key_TypeDef.KEY_STATE_Click==1||KEY_STATE_re==1) return; +// set_click(); //设置单击长按 uint8_t ch_mask = adress_ch_flag[adress_index_ture]; @@ -370,7 +380,14 @@ void _433_fun(void) void scan_433(void) { uint8_t i=0; - + bool rf433_decoder_flag=false; + rf433_decoder_flag=rf433_decoder_get_frame(&rf433_frame); + + if(long_timer>0) + { + long_timer--; + } + if(rf433_sw_flag==1) { rf433_sw_flag=0; @@ -385,11 +402,19 @@ void scan_433(void) key_state=KEY_SHORT; led_state=2; } - - if(power==3 && rf_flag.rf_receive_flag.receive_finish==1 && key_state==KEY_SHORT ) //双击对码GPIO2 + + if(rf433_decoder_flag) + { + adress_H = rf433_frame.addr_h; + adress_L = rf433_frame.addr_l; + res_data = rf433_frame.key ; + //LOGI("finsh finsh finsh\r\n"); + } + //LOGI("rf433_decoder_flag %d adress_H 0x%02x adress_L 0x%02x res_data 0x%02x\r\n",rf433_decoder_flag,adress_H,adress_L,res_data); + if(power==3 && rf433_decoder_flag==true && key_state==KEY_SHORT ) //双击对码GPIO2 { - + key_state=0; power=2; led_state=0; @@ -397,8 +422,8 @@ void scan_433(void) uint8_t ch_mask=CH_GPIO2; //对应位掩码 - adress_H=((receive_data>>16)&0xff); //读取高八位地址码 - adress_L=((receive_data>>8)&0xff); //读取低八位地址码 +// adress_H=((receive_data>>16)&0xff); //读取高八位地址码 +// adress_L=((receive_data>>8)&0xff); //读取低八位地址码 if(adress_index>4) { @@ -433,7 +458,7 @@ void scan_433(void) } - else if(power==4 && rf_flag.rf_receive_flag.receive_finish==1 && key_state==KEY_SHORT ) //四击对码GPIO5 + else if(power==4 && rf433_decoder_flag==true && key_state==KEY_SHORT ) //四击对码GPIO5 { @@ -443,8 +468,8 @@ void scan_433(void) uint8_t ch_mask=CH_GPIO5; //对应位掩码 - adress_H=((receive_data>>16)&0xff); //读取高八位地址码 - adress_L=((receive_data>>8)&0xff); //读取低八位地址码 +// adress_H=((receive_data>>16)&0xff); //读取高八位地址码 +// adress_L=((receive_data>>8)&0xff); //读取低八位地址码 if(adress_index>4) { @@ -479,14 +504,18 @@ void scan_433(void) - if(power==2 && rf_flag.rf_receive_flag.receive_finish==1) + if(power==2 && rf433_decoder_flag==true) { + if(long_timer>0 && (last_H_adress == adress_H && last_L_adress == adress_L)) + { + return; + } adress_index_ture = 0xFF; // 默认无效 for(i=0; i<5; i++) { - if( adress_H_array[i] == ((receive_data>>16)&0xff) && - adress_L_array[i] == ((receive_data>>8)&0xff) ) + if( adress_H_array[i] == adress_H && + adress_L_array[i] == adress_L ) { adress_index_ture = i; // 找到索引 break; @@ -495,19 +524,13 @@ void scan_433(void) // 找到有效索引执行 if(adress_index_ture != 0xFF) - { -// adress_H=((receive_data>>16)&0xff); //读取高八位地址码 -// adress_L=((receive_data>>8)&0xff); //读取低八位地址码 - //LOGI("%d %x %x\r\n",adress_index_ture,adress_H,adress_L); + { _433_fun(); flash_run(); } - - - - - - rf_flag.rf_receive_flag.receive_finish=0; + last_H_adress=adress_H; + last_L_adress=adress_L; + long_timer=rf433_long_time; } if( key_state==KEY_LONG ) diff --git a/project/example/ble/ble_peripheral/app/src/rf433_decoder.c b/project/example/ble/ble_peripheral/app/src/rf433_decoder.c new file mode 100644 index 0000000..8c80c3d --- /dev/null +++ b/project/example/ble/ble_peripheral/app/src/rf433_decoder.c @@ -0,0 +1,793 @@ +#include "rf433_decoder.h" +#include "rf433_decoder_port.h" + +#define RF433_FIFO_SIZE 256u + +#define RF433_GLITCH_DYNAMIC_MIN 2u +#define RF433_GLITCH_DYNAMIC_MAX 4u + +#define RF433_SYNC_LOW_MIN 35u //45改35 +#define RF433_SYNC_LOW_MAX 200u //180改200 +#define RF433_SYNC_HIGH_MIN 1u +#define RF433_SYNC_HIGH_MAX 15u //12改15 + +#define RF433_BIT_LEN 24u +#define RF433_REPEAT_CONFIRM 1u //2改1 + +#define RF433_LEVEL_TIMEOUT 300u //300 + +#define RF433_BIT_TOTAL_MIN 3u //4改3 +#define RF433_BIT_TOTAL_MAX 40u //35改40 + +#define RF433_PROCESS_MAX_ONCE 32u + +#define RF433_FRAME_SCORE_MIN 50u //70改50 +#define RF433_BIT_SCORE_GOOD 4u +#define RF433_BIT_SCORE_NORMAL 3u +#define RF433_BIT_SCORE_POOR 1u + +#define RF433_WINDOW_TIGHT 0u +#define RF433_WINDOW_NORMAL 1u +#define RF433_WINDOW_LOOSE 2u + + +// 新增:连发屏蔽间隔(单位:100us采样tick,200=20ms内相同码只输出一次) +#define RF433_ANTI_REPEAT_TICK 200u + + +#if RF433_DECODER_DEBUG_PULSE +#define RF433_PULSE_LOG(fmt, ...) RF433_DECODER_LOG(fmt, ##__VA_ARGS__) +#else +#define RF433_PULSE_LOG(fmt, ...) +#endif + +#if RF433_DECODER_DEBUG_DETAIL +#define RF433_DETAIL_LOG(fmt, ...) RF433_DECODER_LOG(fmt, ##__VA_ARGS__) +#else +#define RF433_DETAIL_LOG(fmt, ...) +#endif + +typedef enum +{ + RF433_STATE_IDLE = 0, + RF433_STATE_DATA, +} Rf433State_t; + +typedef struct +{ + uint8_t level; + uint16_t width; +} Rf433Pulse_t; + +typedef struct +{ + volatile Rf433Pulse_t fifo[RF433_FIFO_SIZE]; + volatile uint16_t w; + volatile uint16_t r; + volatile uint16_t lost; + uint8_t last_level; + uint16_t width; + uint8_t inited; +} Rf433Fifo_t; + +typedef struct +{ + Rf433State_t state; + uint16_t last_high; + uint16_t last_low; + uint16_t t; + uint16_t short_min; + uint16_t short_max; + uint16_t long_min; + uint16_t long_max; + uint32_t data; + uint8_t bit_cnt; + uint8_t bit_score_sum; + uint8_t frame_score; + uint8_t ppl_locked; + uint8_t window_mode; + uint32_t last_code; + uint8_t same_cnt; + Rf433DecoderFrame_t frame; + bool frame_ready; + + uint16_t anti_repeat_tick; // 新增:连发屏蔽倒计时 +} Rf433Decode_t; + +typedef struct +{ + Rf433Pulse_t p0; + Rf433Pulse_t p1; + Rf433Pulse_t p2; + uint8_t cnt; +} Rf433Repair_t; + +static Rf433Fifo_t s_fifo; +static Rf433Decode_t s_dec; +static Rf433Repair_t s_repair; + +static uint16_t rf433_limit_t(uint16_t t) +{ + if (t < 2u) + { + t = 2u; + } + + if (t > 12u) + { + t = 12u; + } + + return t; +} + +static void rf433_update_range_by_t(uint16_t t) +{ + t = rf433_limit_t(t); + s_dec.t = t; + + if (s_dec.window_mode == RF433_WINDOW_TIGHT) + { + s_dec.short_min = 1u; + s_dec.short_max = (uint16_t)(t + t / 2u + 2u); + s_dec.long_min = (uint16_t)(t * 2u); + s_dec.long_max = (uint16_t)(t * 4u + 2u); + } + else if (s_dec.window_mode == RF433_WINDOW_LOOSE) + { + s_dec.short_min = 1u; + s_dec.short_max = (uint16_t)(t * 2u + 4u); + s_dec.long_min = (uint16_t)(t + t / 2u); + if (s_dec.long_min < 3u) + { + s_dec.long_min = 3u; + } + s_dec.long_max = (uint16_t)(t * 7u + 4u); + } + else + { + s_dec.short_min = 1u; + s_dec.short_max = (uint16_t)(t * 2u + 3u); + s_dec.long_min = (uint16_t)(t + t / 2u); + if (s_dec.long_min < 3u) + { + s_dec.long_min = 3u; + } + s_dec.long_max = (uint16_t)(t * 7u + 3u); + } +} + +static void rf433_decode_reset(void) +{ + s_dec.state = RF433_STATE_IDLE; + s_dec.last_high = 0; + s_dec.last_low = 0; + s_dec.data = 0; + s_dec.bit_cnt = 0; + s_dec.bit_score_sum = 0; + s_dec.frame_score = 0; + s_dec.window_mode = RF433_WINDOW_NORMAL; + rf433_update_range_by_t(4u); +} + +static void rf433_repair_reset(void) +{ + s_repair.cnt = 0; + s_repair.p0.level = 0; + s_repair.p0.width = 0; + s_repair.p1.level = 0; + s_repair.p1.width = 0; + s_repair.p2.level = 0; + s_repair.p2.width = 0; +} + +static void rf433_debug_reset(const char *reason, uint16_t high, uint16_t low) +{ + RF433_DETAIL_LOG("[RF433 RESET] %s bits=%d high=%d low=%d data=0x%06X T=%d win=%d lost=%d\r\n", + reason, + s_dec.bit_cnt, + high, + low, + (unsigned int)s_dec.data, + s_dec.t, + s_dec.window_mode, + s_fifo.lost); +} + +void rf433_decoder_init(void) +{ + s_fifo.w = 0; + s_fifo.r = 0; + s_fifo.lost = 0; + s_fifo.last_level = 0; + s_fifo.width = 0; + s_fifo.inited = 0; + + s_dec.last_code = 0; + s_dec.same_cnt = 0; + s_dec.frame_ready = false; + s_dec.ppl_locked = 0; + s_dec.window_mode = RF433_WINDOW_NORMAL; + s_dec.anti_repeat_tick=0; //新增 + + rf433_decode_reset(); + rf433_repair_reset(); +} + +void rf433_decoder_sample(uint8_t level) +{ + uint16_t next; + Rf433Pulse_t pulse; + + level = level ? 1u : 0u; + + if (!s_fifo.inited) + { + s_fifo.last_level = level; + s_fifo.width = 1; + s_fifo.inited = 1; + return; + } + + if (level == s_fifo.last_level) + { + if (s_fifo.width < 0xFFFFu) + { + s_fifo.width++; + } + return; + } + + pulse.level = s_fifo.last_level; + pulse.width = s_fifo.width; + s_fifo.last_level = level; + s_fifo.width = 1; + + next = (uint16_t)((s_fifo.w + 1u) % RF433_FIFO_SIZE); + if (next != s_fifo.r) + { + s_fifo.fifo[s_fifo.w] = pulse; + s_fifo.w = next; + } + else if (s_fifo.lost < 0xFFFFu) + { + s_fifo.lost++; + } +} + +static bool rf433_fifo_pop(Rf433Pulse_t *pulse) +{ + if (pulse == 0 || s_fifo.r == s_fifo.w) + { + return false; + } + + *pulse = s_fifo.fifo[s_fifo.r]; + s_fifo.r = (uint16_t)((s_fifo.r + 1u) % RF433_FIFO_SIZE); + return true; +} + +static bool rf433_is_sync(uint16_t high, uint16_t low) +{ + if (high == 0u || low == 0u) + { + return false; + } + + if (high < RF433_SYNC_HIGH_MIN || high > RF433_SYNC_HIGH_MAX) + { + return false; + } + + if (low < RF433_SYNC_LOW_MIN || low > RF433_SYNC_LOW_MAX) + { + return false; + } + + if (low < (uint16_t)(high * 10u)) //12 + { + return false; + } + + return true; +} + +static void rf433_ppl_update_by_sync(uint16_t sync_low) +{ + uint16_t t_new = rf433_limit_t((uint16_t)(sync_low / 31u)); + uint16_t t_filter; + + if (s_dec.ppl_locked) + { + t_filter = (uint16_t)((s_dec.t * 7u + t_new) / 8u); + } + else + { + t_filter = (uint16_t)((s_dec.t * 3u + t_new) / 4u); + } + + rf433_update_range_by_t(t_filter); +} + +static void rf433_update_t_by_bit(uint16_t high, uint16_t low, uint8_t bit) +{ + uint16_t t_new; + uint16_t t_filter; + + if (bit == 0u) + { + t_new = (uint16_t)((high + low / 3u) / 2u); + } + else + { + t_new = (uint16_t)((high / 3u + low) / 2u); + } + + t_new = rf433_limit_t(t_new); + + if (s_dec.ppl_locked) + { + t_filter = (uint16_t)((s_dec.t * 7u + t_new) / 8u); + } + else + { + t_filter = (uint16_t)((s_dec.t * 3u + t_new) / 4u); + } + + rf433_update_range_by_t(t_filter); +} + +static uint16_t rf433_get_glitch_max(void) +{ + uint16_t v = s_dec.t / 2u; + + if (v < RF433_GLITCH_DYNAMIC_MIN) + { + v = RF433_GLITCH_DYNAMIC_MIN; + } + + if (v > RF433_GLITCH_DYNAMIC_MAX) + { + v = RF433_GLITCH_DYNAMIC_MAX; + } + + return v; +} + +static bool rf433_is_short(uint16_t width) +{ + return ((width >= s_dec.short_min) && (width <= s_dec.short_max)); +} + +static bool rf433_is_long(uint16_t width) +{ + return ((width >= s_dec.long_min) && (width <= s_dec.long_max)); +} + +static bool rf433_total_valid(uint16_t high, uint16_t low) +{ + uint16_t total = (uint16_t)(high + low); + return ((total >= RF433_BIT_TOTAL_MIN) && (total <= RF433_BIT_TOTAL_MAX)); +} + +static bool rf433_decode_bit(uint16_t high, uint16_t low, uint8_t *bit) +{ + if (bit == 0 || !rf433_total_valid(high, low)) + { + return false; + } + + if (rf433_is_short(high) && rf433_is_long(low)) + { + *bit = 0; + return true; + } + + if (rf433_is_long(high) && rf433_is_short(low)) + { + *bit = 1; + return true; + } + + return false; +} + +#if RF433_DECODER_DEBUG_DETAIL +static const char *rf433_bit_fail_reason(uint16_t high, uint16_t low) +{ + if (!rf433_total_valid(high, low)) + { + return "total"; + } + + if (!rf433_is_short(high) && !rf433_is_long(high)) + { + return "high"; + } + + if (!rf433_is_short(low) && !rf433_is_long(low)) + { + return "low"; + } + + return "pair"; +} +#endif + +static uint16_t rf433_abs_diff_u16(uint16_t a, uint16_t b) +{ + return (a > b) ? (uint16_t)(a - b) : (uint16_t)(b - a); +} + +static uint8_t rf433_score_bit(uint16_t high, uint16_t low, uint8_t bit) +{ + uint16_t ideal_high; + uint16_t ideal_low; + uint16_t err; + + if (bit == 0u) + { + ideal_high = s_dec.t; + ideal_low = (uint16_t)(s_dec.t * 3u); + } + else + { + ideal_high = (uint16_t)(s_dec.t * 3u); + ideal_low = s_dec.t; + } + + err = (uint16_t)(rf433_abs_diff_u16(high, ideal_high) + + rf433_abs_diff_u16(low, ideal_low)); + + if (err <= 2u) + { + return RF433_BIT_SCORE_GOOD; + } + + if (err <= 5u) + { + return RF433_BIT_SCORE_NORMAL; + } + + return RF433_BIT_SCORE_POOR; +} + +static uint8_t rf433_calc_frame_score(void) +{ + uint16_t score; + + if (s_dec.bit_cnt == 0u) + { + return 0u; + } + + score = (uint16_t)s_dec.bit_score_sum * 100u; + score = score / (uint16_t)(RF433_BIT_LEN * RF433_BIT_SCORE_GOOD); + return (score > 100u) ? 100u : (uint8_t)score; +} + +static void rf433_update_window_by_score(uint8_t score) +{ + if (score >= 90u) + { + s_dec.window_mode = RF433_WINDOW_TIGHT; + s_dec.ppl_locked = 1u; + } + else if (score >= 60u) + { + s_dec.window_mode = RF433_WINDOW_NORMAL; + } + else + { + s_dec.window_mode = RF433_WINDOW_LOOSE; + s_dec.ppl_locked = 0u; + } + + rf433_update_range_by_t(s_dec.t); +} + +static void rf433_output_code(uint32_t code) +{ + if (code == s_dec.last_code) + { + if (s_dec.same_cnt < 255u) + { + s_dec.same_cnt++; + } + } + else + { + s_dec.last_code = code; + s_dec.same_cnt = 1; + +// // 换码直接清空屏蔽计时,不同按键不拦截 +// s_dec.anti_repeat_tick = 0; + } + + RF433_DETAIL_LOG("[RF433 REPEAT] code=0x%06X same=%d/%d\r\n", + (unsigned int)code, + s_dec.same_cnt, + RF433_REPEAT_CONFIRM); + + if (s_dec.same_cnt >= RF433_REPEAT_CONFIRM) + { + s_dec.frame.code = code; + s_dec.frame.bit_len = RF433_BIT_LEN; + s_dec.frame.addr_h = (uint8_t)((code >> 16) & 0xFFu); + s_dec.frame.addr_l = (uint8_t)((code >> 8) & 0xFFu); + s_dec.frame.key = (uint8_t)(code & 0xFFu); + s_dec.frame.score = s_dec.frame_score; + s_dec.frame_ready = true; + +// // 输出后刷新连发屏蔽倒计时,一段时间内不再输出同码 +// s_dec.anti_repeat_tick = RF433_ANTI_REPEAT_TICK; + + s_dec.same_cnt = 0; + + RF433_DECODER_LOG("[RF433 OK] code=0x%06X addr_h=0x%02X addr_l=0x%02X key=0x%02X score=%d\r\n", + (unsigned int)s_dec.frame.code, + s_dec.frame.addr_h, + s_dec.frame.addr_l, + s_dec.frame.key, + s_dec.frame.score); + } +} + +static void rf433_process_clean_pulse(Rf433Pulse_t pulse) +{ + uint8_t bit; + uint8_t bit_score; + + if (pulse.width == 0u) + { + return; + } + + if (pulse.width > RF433_LEVEL_TIMEOUT) + { + rf433_debug_reset("timeout", s_dec.last_high, pulse.width); + rf433_decode_reset(); + rf433_repair_reset(); + return; + } + + if (pulse.level) + { + s_dec.last_high = pulse.width; + return; + } + + s_dec.last_low = pulse.width; + + if (rf433_is_sync(s_dec.last_high, s_dec.last_low)) + { + s_dec.window_mode = s_dec.ppl_locked ? RF433_WINDOW_TIGHT : RF433_WINDOW_NORMAL; + rf433_ppl_update_by_sync(s_dec.last_low); + + RF433_DETAIL_LOG("[RF433 SYNC] high=%d low=%d T=%d short=%d-%d long=%d-%d win=%d lock=%d\r\n", + s_dec.last_high, + s_dec.last_low, + s_dec.t, + s_dec.short_min, + s_dec.short_max, + s_dec.long_min, + s_dec.long_max, + s_dec.window_mode, + s_dec.ppl_locked); + + s_dec.state = RF433_STATE_DATA; + s_dec.data = 0; + s_dec.bit_cnt = 0; + s_dec.bit_score_sum = 0; + s_dec.frame_score = 0; + s_dec.last_high = 0; + s_dec.last_low = 0; + return; + } + + if (s_dec.state != RF433_STATE_DATA || + s_dec.last_high == 0u || + s_dec.last_low == 0u) + { + return; + } + + if (rf433_decode_bit(s_dec.last_high, s_dec.last_low, &bit)) + { + bit_score = rf433_score_bit(s_dec.last_high, s_dec.last_low, bit); + if (s_dec.bit_score_sum <= (uint8_t)(255u - bit_score)) + { + s_dec.bit_score_sum += bit_score; + } + + rf433_update_t_by_bit(s_dec.last_high, s_dec.last_low, bit); + s_dec.data <<= 1; + if (bit) + { + s_dec.data |= 1u; + } + s_dec.bit_cnt++; + + RF433_DETAIL_LOG("[RF433 BIT] idx=%02d bit=%d high=%d low=%d score=%d T=%d data=0x%06X\r\n", + s_dec.bit_cnt, + bit, + s_dec.last_high, + s_dec.last_low, + bit_score, + s_dec.t, + (unsigned int)s_dec.data); + + if (s_dec.bit_cnt >= RF433_BIT_LEN) + { + s_dec.frame_score = rf433_calc_frame_score(); + rf433_update_window_by_score(s_dec.frame_score); + + RF433_DECODER_LOG("[RF433 FRAME] score=%3d T=%2d win=%d lock=%d bits=%2d code=0x%06X addr_h=0x%02X addr_l=0x%02X key=0x%02X\r\n", + s_dec.frame_score, + s_dec.t, + s_dec.window_mode, + s_dec.ppl_locked, + s_dec.bit_cnt, + (unsigned int)s_dec.data, + (unsigned int)((s_dec.data >> 16) & 0xFFu), + (unsigned int)((s_dec.data >> 8) & 0xFFu), + (unsigned int)(s_dec.data & 0xFFu)); + + if (s_dec.frame_score >= RF433_FRAME_SCORE_MIN) + { + rf433_output_code(s_dec.data); + } + else + { + RF433_DECODER_LOG("[RF433 BAD] score=%d code=0x%06X\r\n", + s_dec.frame_score, + (unsigned int)s_dec.data); + } + + rf433_decode_reset(); + rf433_repair_reset(); + } + } + else + { +#if RF433_DECODER_DEBUG_DETAIL + RF433_DETAIL_LOG("[RF433 BIT_ERR] reason=%s idx=%02d high=%d low=%d total=%d T=%d short=%d-%d long=%d-%d data=0x%06X\r\n", + rf433_bit_fail_reason(s_dec.last_high, s_dec.last_low), + (uint8_t)(s_dec.bit_cnt + 1u), + s_dec.last_high, + s_dec.last_low, + (uint16_t)(s_dec.last_high + s_dec.last_low), + s_dec.t, + s_dec.short_min, + s_dec.short_max, + s_dec.long_min, + s_dec.long_max, + (unsigned int)s_dec.data); +#endif + rf433_debug_reset("bit", s_dec.last_high, s_dec.last_low); + rf433_decode_reset(); + rf433_repair_reset(); + } +} + +static bool rf433_can_merge_glitch(Rf433Pulse_t a, Rf433Pulse_t b, Rf433Pulse_t c) +{ + if (a.level != c.level) + { + return false; + } + + if (b.width > rf433_get_glitch_max()) + { + return false; + } + + if (a.width == 0u || c.width == 0u) + { + return false; + } + + return true; +} + +static void rf433_repair_input_pulse(Rf433Pulse_t pulse) +{ + Rf433Pulse_t merged; + Rf433Pulse_t out; + + RF433_PULSE_LOG("[RF433 RAW] L=%d W=%d\r\n", pulse.level, pulse.width); + + if (pulse.width == 0u) + { + return; + } + + if (pulse.width > RF433_LEVEL_TIMEOUT) + { + rf433_debug_reset("timeout", s_dec.last_high, pulse.width); + rf433_decode_reset(); + rf433_repair_reset(); + return; + } + + if (s_repair.cnt == 0u) + { + s_repair.p0 = pulse; + s_repair.cnt = 1u; + return; + } + + if (s_repair.cnt == 1u) + { + s_repair.p1 = pulse; + s_repair.cnt = 2u; + return; + } + + s_repair.p2 = pulse; + if (rf433_can_merge_glitch(s_repair.p0, s_repair.p1, s_repair.p2)) + { + merged.level = s_repair.p0.level; + merged.width = (uint16_t)(s_repair.p0.width + + s_repair.p1.width + + s_repair.p2.width); + + RF433_PULSE_LOG("[RF433 MERGE] %d:%d + %d:%d + %d:%d => %d:%d\r\n", + s_repair.p0.level, + s_repair.p0.width, + s_repair.p1.level, + s_repair.p1.width, + s_repair.p2.level, + s_repair.p2.width, + merged.level, + merged.width); + + s_repair.p0 = merged; + s_repair.cnt = 1u; + return; + } + + out = s_repair.p0; + RF433_PULSE_LOG("[RF433 CLEAN] L=%d W=%d\r\n", out.level, out.width); + rf433_process_clean_pulse(out); + + s_repair.p0 = s_repair.p1; + s_repair.p1 = s_repair.p2; + s_repair.cnt = 2u; +} + +void rf433_decoder_process(void) +{ + Rf433Pulse_t pulse; + uint8_t cnt = 0; + +// // 新增:防重复倒计时全局递减 +// if(s_dec.anti_repeat_tick > 0) +// { +// s_dec.anti_repeat_tick--; +// } + + + while ((cnt < RF433_PROCESS_MAX_ONCE) && rf433_fifo_pop(&pulse)) + { + rf433_repair_input_pulse(pulse); + cnt++; + } +} + +bool rf433_decoder_get_frame(Rf433DecoderFrame_t *frame) +{ + if (frame == 0 || !s_dec.frame_ready) + { + return false; + } + + *frame = s_dec.frame; + s_dec.frame_ready = false; + return true; +} + +uint16_t rf433_decoder_get_lost_count(void) +{ + return s_fifo.lost; +} diff --git a/project/example/ble/ble_peripheral/app/src/rf433_decoder.h b/project/example/ble/ble_peripheral/app/src/rf433_decoder.h new file mode 100644 index 0000000..377e4c2 --- /dev/null +++ b/project/example/ble/ble_peripheral/app/src/rf433_decoder.h @@ -0,0 +1,25 @@ +#ifndef __RF433_DECODER_H__ +#define __RF433_DECODER_H__ + +#include +#include + +#define RF433_DECODER_SAMPLE_US 100u + +typedef struct +{ + uint32_t code; + uint8_t bit_len; + uint8_t addr_h; + uint8_t addr_l; + uint8_t key; + uint8_t score; +} Rf433DecoderFrame_t; + +void rf433_decoder_init(void); +void rf433_decoder_sample(uint8_t level); +void rf433_decoder_process(void); +bool rf433_decoder_get_frame(Rf433DecoderFrame_t *frame); +uint16_t rf433_decoder_get_lost_count(void); + +#endif diff --git a/project/example/ble/ble_peripheral/app/src/rf433_decoder_port.h b/project/example/ble/ble_peripheral/app/src/rf433_decoder_port.h new file mode 100644 index 0000000..82c19b1 --- /dev/null +++ b/project/example/ble/ble_peripheral/app/src/rf433_decoder_port.h @@ -0,0 +1,27 @@ +#ifndef __RF433_DECODER_PORT_H__ +#define __RF433_DECODER_PORT_H__ +#include "dbg.h" +/* + * Project-side configuration for the portable RF433 decoder. + * See PORTING.md for Chinese porting instructions. + */ +#include "xc6xxx.h" +#include "rwip_config.h" // stack configuration + +#include "dbg_swdiag.h" // sw profiling definitions + +#include "dbg_trc.h" // debug tracer definition + +#ifndef RF433_DECODER_LOG +#define RF433_DECODER_LOG(fmt, ...) LOGI(fmt, ##__VA_ARGS__) +#endif + +#ifndef RF433_DECODER_DEBUG_DETAIL +#define RF433_DECODER_DEBUG_DETAIL 0 +#endif + +#ifndef RF433_DECODER_DEBUG_PULSE +#define RF433_DECODER_DEBUG_PULSE 0 +#endif + +#endif diff --git a/project/example/ble/ble_peripheral/app/src/timer.c b/project/example/ble/ble_peripheral/app/src/timer.c index 470ff04..f6349e8 100644 --- a/project/example/ble/ble_peripheral/app/src/timer.c +++ b/project/example/ble/ble_peripheral/app/src/timer.c @@ -3,7 +3,7 @@ #include "timeslice.h" #include "led.h" #include "rf433.h" - +#include "rf433_decoder.h" uint16_t led_1_count_time=0; @@ -162,8 +162,8 @@ __RAM_CODE void timer1_callback(void *context) __RAM_CODE void timer2_callback(void *context) { - rf433_receive(); - + //rf433_receive(); + rf433_decoder_sample(RF_DATA); } diff --git a/project/example/ble/ble_peripheral/app/src/timeslice.c b/project/example/ble/ble_peripheral/app/src/timeslice.c index 94bb517..c62c728 100644 --- a/project/example/ble/ble_peripheral/app/src/timeslice.c +++ b/project/example/ble/ble_peripheral/app/src/timeslice.c @@ -5,11 +5,13 @@ #include "switch_s.h" #include "ota_flash_interface.h" #include "ota_protocol.h" +#include "rf433_decoder.h" TASK_COMPONENTS TaskComps[] = { {0, 50, 50, ble_message_process}, //蓝牙处理任务 {0, 1, 1, scan_433} , //遥控处理任务 {0, 0, 0, app_op_flash_on}, + {0, 1, 1, rf433_decoder_process}, {0, 10, 10,app_key_scan}, {0, 10, 10,ble_mode_scan}, {0, 10, 10,trigger_check_process}, diff --git a/project/example/ble/ble_peripheral/mdk/Listings/Xinc_ble_sdk.map b/project/example/ble/ble_peripheral/mdk/Listings/Xinc_ble_sdk.map index 1fde357..eb75677 100644 --- a/project/example/ble/ble_peripheral/mdk/Listings/Xinc_ble_sdk.map +++ b/project/example/ble/ble_peripheral/mdk/Listings/Xinc_ble_sdk.map @@ -121,6 +121,7 @@ Section Cross References arch_main.o(i.board_init) refers to rf433.o(i.chx_gpio_init) for chx_gpio_init arch_main.o(i.board_init) refers to key.o(i.app_key_init) for app_key_init arch_main.o(i.board_init) refers to switch_s.o(i.switch_init) for switch_init + arch_main.o(i.board_init) refers to rf433_decoder.o(i.rf433_decoder_init) for rf433_decoder_init arch_main.o(i.board_init) refers to __2printf.o(.text) for __2printf arch_main.o(i.board_init) refers to arch_main.o(i.rom_env_host_init) for rom_env_host_init arch_main.o(i.flash_init) refers to _printf_pad.o(.text) for _printf_pre_padding @@ -589,7 +590,8 @@ Section Cross References timer.o(ram_code) refers to xc_drv_pwm.o(i.xc_pwm_dutycycle_set) for xc_pwm_dutycycle_set timer.o(ram_code) refers to timeslice.o(i.TaskRemarks) for TaskRemarks timer.o(ram_code) refers to timer.o(i.updateTimer) for updateTimer - timer.o(ram_code) refers to rf433.o(i.rf433_receive) for rf433_receive + timer.o(ram_code) refers to xc_drv_gpio.o(i.xc_gpio_read_pin) for xc_gpio_read_pin + timer.o(ram_code) refers to rf433_decoder.o(i.rf433_decoder_sample) for rf433_decoder_sample timer.o(ram_code) refers to led.o(.data) for led_state timer.o(ram_code) refers to timer.o(.data) for .data timer.o(ram_code) refers to rf433.o(.data) for key_state @@ -599,6 +601,7 @@ Section Cross References timeslice.o(.data) refers to uart_1.o(i.ble_message_process) for ble_message_process timeslice.o(.data) refers to rf433.o(i.scan_433) for scan_433 timeslice.o(.data) refers to ota_flash_interface.o(i.app_op_flash_on) for app_op_flash_on + timeslice.o(.data) refers to rf433_decoder.o(i.rf433_decoder_process) for rf433_decoder_process timeslice.o(.data) refers to key.o(i.app_key_scan) for app_key_scan timeslice.o(.data) refers to rf433.o(i.ble_mode_scan) for ble_mode_scan timeslice.o(.data) refers to switch_s.o(i.trigger_check_process) for trigger_check_process @@ -628,11 +631,13 @@ Section Cross References rf433.o(i.rf433_gpio_init) refers to xc_drv_gpio.o(i.xc_gpio_init) for xc_gpio_init rf433.o(i.rf433_receive) refers to xc_drv_gpio.o(i.xc_gpio_read_pin) for xc_gpio_read_pin rf433.o(i.rf433_receive) refers to rf433.o(.data) for .data + rf433.o(i.scan_433) refers to rf433_decoder.o(i.rf433_decoder_get_frame) for rf433_decoder_get_frame rf433.o(i.scan_433) refers to rf433.o(i._433_fun) for _433_fun rf433.o(i.scan_433) refers to rf433.o(i.flash_run) for flash_run rf433.o(i.scan_433) refers to rt_memclr.o(.text) for __aeabi_memclr4 - rf433.o(i.scan_433) refers to switch_s.o(.data) for rf433_sw_flag + rf433.o(i.scan_433) refers to rf433.o(.bss) for .bss rf433.o(i.scan_433) refers to rf433.o(.data) for .data + rf433.o(i.scan_433) refers to switch_s.o(.data) for rf433_sw_flag rf433.o(i.scan_433) refers to led.o(.data) for led_state switch_s.o(i.gpio_intr_callback) refers to switch_s.o(.data) for .data switch_s.o(i.switch_init) refers to xc_drv_gpio.o(i.xc_gpio_init) for xc_gpio_init @@ -829,6 +834,52 @@ Section Cross References ota_server.o(.constdata) refers to ota_server.o(i.ota_svc_cb_event_sent) for ota_svc_cb_event_sent ota_server.o(.constdata) refers to ota_server.o(i.ota_svc_cb_att_read_get) for ota_svc_cb_att_read_get ota_server.o(.constdata) refers to ota_server.o(i.ota_svc_cb_att_val_set) for ota_svc_cb_att_val_set + rf433_decoder.o(i.rf433_decode_reset) refers to rf433_decoder.o(i.rf433_update_range_by_t) for rf433_update_range_by_t + rf433_decoder.o(i.rf433_decode_reset) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_decoder_get_frame) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_decoder_get_lost_count) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_decoder_init) refers to rf433_decoder.o(i.rf433_decode_reset) for rf433_decode_reset + rf433_decoder.o(i.rf433_decoder_init) refers to rf433_decoder.o(i.rf433_repair_reset) for rf433_repair_reset + rf433_decoder.o(i.rf433_decoder_init) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_decoder_process) refers to rf433_decoder.o(i.rf433_repair_input_pulse) for rf433_repair_input_pulse + rf433_decoder.o(i.rf433_decoder_process) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_decoder_sample) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_is_long) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_is_short) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_output_code) refers to _printf_pad.o(.text) for _printf_pre_padding + rf433_decoder.o(i.rf433_output_code) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent + rf433_decoder.o(i.rf433_output_code) refers to _printf_d.o(.ARM.Collect$$_printf_percent$$00000009) for _printf_d + rf433_decoder.o(i.rf433_output_code) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x + rf433_decoder.o(i.rf433_output_code) refers to _printf_dec.o(.text) for _printf_int_dec + rf433_decoder.o(i.rf433_output_code) refers to _printf_hex_int_ll_ptr.o(.text) for _printf_longlong_hex + rf433_decoder.o(i.rf433_output_code) refers to __2printf.o(.text) for __2printf + rf433_decoder.o(i.rf433_output_code) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_output_code) refers to rf433_decoder.o(.conststring) for .conststring + rf433_decoder.o(i.rf433_process_clean_pulse) refers to _printf_pad.o(.text) for _printf_pre_padding + rf433_decoder.o(i.rf433_process_clean_pulse) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent + rf433_decoder.o(i.rf433_process_clean_pulse) refers to _printf_d.o(.ARM.Collect$$_printf_percent$$00000009) for _printf_d + rf433_decoder.o(i.rf433_process_clean_pulse) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x + rf433_decoder.o(i.rf433_process_clean_pulse) refers to _printf_dec.o(.text) for _printf_int_dec + rf433_decoder.o(i.rf433_process_clean_pulse) refers to _printf_hex_int_ll_ptr.o(.text) for _printf_longlong_hex + rf433_decoder.o(i.rf433_process_clean_pulse) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(i.rf433_limit_t) for rf433_limit_t + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(i.rf433_update_range_by_t) for rf433_update_range_by_t + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(i.rf433_is_short) for rf433_is_short + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(i.rf433_is_long) for rf433_is_long + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(i.rf433_abs_diff_u16) for rf433_abs_diff_u16 + rf433_decoder.o(i.rf433_process_clean_pulse) refers to __2printf.o(.text) for __2printf + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(i.rf433_output_code) for rf433_output_code + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(i.rf433_decode_reset) for rf433_decode_reset + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(i.rf433_repair_reset) for rf433_repair_reset + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_process_clean_pulse) refers to rf433_decoder.o(.conststring) for .conststring + rf433_decoder.o(i.rf433_repair_input_pulse) refers to rf433_decoder.o(i.rf433_decode_reset) for rf433_decode_reset + rf433_decoder.o(i.rf433_repair_input_pulse) refers to rf433_decoder.o(i.rf433_repair_reset) for rf433_repair_reset + rf433_decoder.o(i.rf433_repair_input_pulse) refers to rf433_decoder.o(i.rf433_process_clean_pulse) for rf433_process_clean_pulse + rf433_decoder.o(i.rf433_repair_input_pulse) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_repair_reset) refers to rf433_decoder.o(.bss) for .bss + rf433_decoder.o(i.rf433_update_range_by_t) refers to rf433_decoder.o(i.rf433_limit_t) for rf433_limit_t + rf433_decoder.o(i.rf433_update_range_by_t) refers to rf433_decoder.o(.bss) for .bss printf.o(.text) refers (Special) to _printf_a.o(.ARM.Collect$$_printf_percent$$00000006) for _printf_a printf.o(.text) refers (Special) to _printf_c.o(.ARM.Collect$$_printf_percent$$00000013) for _printf_c printf.o(.text) refers (Special) to _printf_charcount.o(.text) for _printf_charcount @@ -1350,6 +1401,8 @@ Removing Unused input sections from the image. Removing timeslice.o(.emb_text), (8 bytes). Removing uart_1.o(.emb_text), (8 bytes). Removing rf433.o(.emb_text), (8 bytes). + Removing rf433.o(i.rf433_receive), (248 bytes). + Removing rf433.o(.data), (1 bytes). Removing switch_s.o(.emb_text), (8 bytes). Removing fmc_spi_1.o(.emb_text), (8 bytes). Removing key.o(.emb_text), (8 bytes). @@ -1376,8 +1429,10 @@ Removing Unused input sections from the image. Removing ota_server.o(i.ota_svc_cb_event_sent), (76 bytes). Removing ota_server.o(.constdata), (209 bytes). Removing ota_server.o(.conststring), (74 bytes). + Removing rf433_decoder.o(.emb_text), (8 bytes). + Removing rf433_decoder.o(i.rf433_decoder_get_lost_count), (12 bytes). -245 unused section(s) (total 14211 bytes) removed from the image. +249 unused section(s) (total 14480 bytes) removed from the image. ============================================================================== @@ -1389,7 +1444,8 @@ Adding Veneers to the image Adding TT veneer (12 bytes, Long) for call to 'xc_pwm_dutycycle_set' from timer.o(ram_code). Adding TT veneer (12 bytes, Long) for call to 'TaskRemarks' from timer.o(ram_code). Adding TT veneer (12 bytes, Long) for call to 'updateTimer' from timer.o(ram_code). - Adding TT veneer (12 bytes, Long) for call to 'rf433_receive' from timer.o(ram_code). + Adding TT veneer (12 bytes, Long) for call to 'xc_gpio_read_pin' from timer.o(ram_code). + Adding TT veneer (12 bytes, Long) for call to 'rf433_decoder_sample' from timer.o(ram_code). Adding TT veneer (12 bytes, Long) for call to 'key_click_state_reset' from key.o(ram_code). Adding TT veneer (12 bytes, Long) for call to 'app_key_click_detection' from key.o(ram_code). Adding TT veneer (12 bytes, Long) for call to '_memset' from aeabi_memset.o(.text). @@ -1420,7 +1476,7 @@ Adding Veneers to the image Adding TT veneer (12 bytes, Long) for call to 'xc_fmc_spi_flash_read' from xc_drv_fmc_spi.o(i.xc_unique_identification_read). Adding TT veneer (12 bytes, Long) for call to 'xc_fmc_spi_otp_read_page' from xc_drv_fmc_spi.o(i.xc_unique_identification_read). -36 Veneer(s) (total 432 bytes) added to the image. +37 Veneer(s) (total 444 bytes) added to the image. ============================================================================== @@ -1431,149 +1487,149 @@ Image Symbol Table Symbol Name Value Ov Type Size Object(Section) ../clib/../cmprslib/zerorunl2.c 0x00000000 Number 0 __dczerorl2.o ABSOLUTE - ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE + ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE ../clib/angel/boardlib.s 0x00000000 Number 0 boardshut.o ABSOLUTE ../clib/angel/handlers.s 0x00000000 Number 0 __scatter_copy.o ABSOLUTE ../clib/angel/handlers.s 0x00000000 Number 0 __scatter_zi.o ABSOLUTE - ../clib/angel/kernel.s 0x00000000 Number 0 rtexit.o ABSOLUTE - ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry2.o ABSOLUTE - ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry4.o ABSOLUTE ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry.o ABSOLUTE ../clib/angel/kernel.s 0x00000000 Number 0 rtexit2.o ABSOLUTE - ../clib/angel/rt.s 0x00000000 Number 0 rt_ctype_table.o ABSOLUTE - ../clib/angel/rt.s 0x00000000 Number 0 rt_div0.o ABSOLUTE + ../clib/angel/kernel.s 0x00000000 Number 0 rtexit.o ABSOLUTE + ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry4.o ABSOLUTE + ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry2.o ABSOLUTE ../clib/angel/rt.s 0x00000000 Number 0 rt_locale.o ABSOLUTE - ../clib/angel/rt.s 0x00000000 Number 0 aeabi_ldiv0_sigfpe.o ABSOLUTE - ../clib/angel/rt.s 0x00000000 Number 0 aeabi_ldiv0.o ABSOLUTE - ../clib/angel/rt.s 0x00000000 Number 0 aeabi_idiv0_sigfpe.o ABSOLUTE - ../clib/angel/rt.s 0x00000000 Number 0 rt_raise.o ABSOLUTE - ../clib/angel/rt.s 0x00000000 Number 0 rt_locale_intlibspace.o ABSOLUTE ../clib/angel/rt.s 0x00000000 Number 0 aeabi_idiv0.o ABSOLUTE + ../clib/angel/rt.s 0x00000000 Number 0 rt_ctype_table.o ABSOLUTE + ../clib/angel/rt.s 0x00000000 Number 0 aeabi_ldiv0.o ABSOLUTE + ../clib/angel/rt.s 0x00000000 Number 0 rt_locale_intlibspace.o ABSOLUTE + ../clib/angel/rt.s 0x00000000 Number 0 rt_raise.o ABSOLUTE + ../clib/angel/rt.s 0x00000000 Number 0 aeabi_ldiv0_sigfpe.o ABSOLUTE + ../clib/angel/rt.s 0x00000000 Number 0 rt_div0.o ABSOLUTE + ../clib/angel/rt.s 0x00000000 Number 0 aeabi_idiv0_sigfpe.o ABSOLUTE ../clib/angel/scatterp.s 0x00000000 Number 0 __scatter.o ABSOLUTE ../clib/angel/startup.s 0x00000000 Number 0 __main.o ABSOLUTE - ../clib/angel/sys.s 0x00000000 Number 0 tempstk.o ABSOLUTE ../clib/angel/sys.s 0x00000000 Number 0 use_no_semi.o ABSOLUTE - ../clib/angel/sys.s 0x00000000 Number 0 indicate_semi.o ABSOLUTE ../clib/angel/sys.s 0x00000000 Number 0 sys_stackheap_outer.o ABSOLUTE + ../clib/angel/sys.s 0x00000000 Number 0 tempstk.o ABSOLUTE ../clib/angel/sys.s 0x00000000 Number 0 libspace.o ABSOLUTE + ../clib/angel/sys.s 0x00000000 Number 0 indicate_semi.o ABSOLUTE ../clib/angel/sysapp.c 0x00000000 Number 0 sys_command.o ABSOLUTE - ../clib/armsys.c 0x00000000 Number 0 no_argv.o ABSOLUTE - ../clib/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE ../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE + ../clib/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE + ../clib/armsys.c 0x00000000 Number 0 no_argv.o ABSOLUTE ../clib/bigflt.c 0x00000000 Number 0 bigflt0.o ABSOLUTE ../clib/btod.c 0x00000000 Number 0 btod.o ABSOLUTE - ../clib/division.c 0x00000000 Number 0 lludiv10.o ABSOLUTE ../clib/division.c 0x00000000 Number 0 lludiv.o ABSOLUTE ../clib/division.c 0x00000000 Number 0 rtudiv10.o ABSOLUTE + ../clib/division.c 0x00000000 Number 0 lludiv10.o ABSOLUTE ../clib/division.s 0x00000000 Number 0 aeabi_sdiv_div0.o ABSOLUTE ../clib/division.s 0x00000000 Number 0 aeabi_sdiv.o ABSOLUTE ../clib/heapalloc.c 0x00000000 Number 0 hrguard.o ABSOLUTE ../clib/heapaux.c 0x00000000 Number 0 heapauxi.o ABSOLUTE + ../clib/libinit.s 0x00000000 Number 0 libshutdown2.o ABSOLUTE + ../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE ../clib/libinit.s 0x00000000 Number 0 libshutdown.o ABSOLUTE ../clib/libinit.s 0x00000000 Number 0 libinit.o ABSOLUTE - ../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE - ../clib/libinit.s 0x00000000 Number 0 libshutdown2.o ABSOLUTE ../clib/locale.c 0x00000000 Number 0 _wcrtomb.o ABSOLUTE - ../clib/locale.s 0x00000000 Number 0 lc_ctype_c.o ABSOLUTE ../clib/locale.s 0x00000000 Number 0 lc_numeric_c.o ABSOLUTE + ../clib/locale.s 0x00000000 Number 0 lc_ctype_c.o ABSOLUTE ../clib/longlong.c 0x00000000 Number 0 llmul.o ABSOLUTE - ../clib/memcpset.c 0x00000000 Number 0 rt_memcpy.o ABSOLUTE ../clib/memcpset.c 0x00000000 Number 0 rt_memclr.o ABSOLUTE - ../clib/memcpset.c 0x00000000 Number 0 aeabi_memset.o ABSOLUTE ../clib/memcpset.c 0x00000000 Number 0 rt_memcpy.o ABSOLUTE + ../clib/memcpset.c 0x00000000 Number 0 rt_memcpy.o ABSOLUTE + ../clib/memcpset.c 0x00000000 Number 0 aeabi_memset.o ABSOLUTE ../clib/misc.s 0x00000000 Number 0 printf_stubs.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_truncate.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_hex_ll.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_char_file.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_char.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_fp_dec.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_oct_int_ll.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 _printf_charcount.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_intcommon.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_fp_infnan.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_fp_hex.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_char_common.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_wchar.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_char.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_char_file.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_wctomb.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_longlong_dec.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_oct_int.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 __printf_flags_ss_wp.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 __printf_ss_wp.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 __printf_flags_wp.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_wctomb.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 __printf_flags_ss_wp.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_dec.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 __printf_wp.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 __printf_nopercent.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_fp_infnan.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 __printf_flags_ss.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 __printf_ss.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_intcommon.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 __printf_flags.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ll_ptr.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_hex_ll_ptr.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_wchar.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_char_common.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_fp_hex.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_fp_dec.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ptr.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 _printf_hex_ptr.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ll.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 _printf_hex_int.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 __printf_nopercent.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_hex_ll.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_dec.o ABSOLUTE + ../clib/printf.c 0x00000000 Number 0 _printf_truncate.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 _printf_str.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 _printf_pad.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 __printf.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 noretval__2printf.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 __2printf.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 printf.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 __printf_flags.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_hex_ll_ptr.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 __printf_ss.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 __printf_flags_ss.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 __printf_wp.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ptr.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ll_ptr.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_longlong_dec.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_oct_int_ll.o ABSOLUTE - ../clib/printf.c 0x00000000 Number 0 _printf_oct_int.o ABSOLUTE ../clib/printf.c 0x00000000 Number 0 _printf_oct_ll.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_n.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_percent.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_g.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_d.o ABSOLUTE ../clib/printf_percent.s 0x00000000 Number 0 _printf_x.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_s.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_p.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_i.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_llu.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_lc.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_lld.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_ls.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_llx.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_percent_end.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_lli.o ABSOLUTE ../clib/printf_percent.s 0x00000000 Number 0 _printf_llo.o ABSOLUTE ../clib/printf_percent.s 0x00000000 Number 0 _printf_e.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_llx.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_d.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_percent.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_llu.o ABSOLUTE ../clib/printf_percent.s 0x00000000 Number 0 _printf_ll.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_s.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_l.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_percent_end.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_a.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_g.o ABSOLUTE ../clib/printf_percent.s 0x00000000 Number 0 _printf_f.o ABSOLUTE ../clib/printf_percent.s 0x00000000 Number 0 _printf_u.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_i.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_lli.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_p.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_n.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_c.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_lld.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_lc.o ABSOLUTE - ../clib/printf_percent.s 0x00000000 Number 0 _printf_ls.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_a.o ABSOLUTE ../clib/printf_percent.s 0x00000000 Number 0 _printf_o.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_fpe_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_stak_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_general.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_fpe_outer.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_abrt_inner.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_l.o ABSOLUTE + ../clib/printf_percent.s 0x00000000 Number 0 _printf_c.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_rtred_inner.o ABSOLUTE ../clib/signal.c 0x00000000 Number 0 defsig_other.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE ../clib/signal.c 0x00000000 Number 0 defsig_segv_inner.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_fpe_outer.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE ../clib/signal.c 0x00000000 Number 0 defsig_cppl_inner.o ABSOLUTE ../clib/signal.c 0x00000000 Number 0 defsig_pvfn_inner.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_fpe_inner.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_stak_inner.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_general.o ABSOLUTE + ../clib/signal.c 0x00000000 Number 0 defsig_abrt_inner.o ABSOLUTE ../clib/signal.c 0x00000000 Number 0 defsig_fpe_formal.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_rtred_inner.o ABSOLUTE ../clib/signal.s 0x00000000 Number 0 defsig.o ABSOLUTE ../clib/stdlib.c 0x00000000 Number 0 exit.o ABSOLUTE - ../clib/string.c 0x00000000 Number 0 strcmp.o ABSOLUTE ../clib/string.c 0x00000000 Number 0 memcmp.o ABSOLUTE - ../clib/unhosted.c 0x00000000 Number 0 uread4.o ABSOLUTE + ../clib/string.c 0x00000000 Number 0 strcmp.o ABSOLUTE ../clib/unhosted.c 0x00000000 Number 0 uwrite4.o ABSOLUTE + ../clib/unhosted.c 0x00000000 Number 0 uread4.o ABSOLUTE ../fplib/cfplib/daddsub.c 0x00000000 Number 0 daddsub.o ABSOLUTE ../fplib/cfplib/dmul.c 0x00000000 Number 0 dmul.o ABSOLUTE ../fplib/cfplib/fdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE ../fplib/cfplib/ffix.c 0x00000000 Number 0 dfixui.o ABSOLUTE ../fplib/cfplib/ffix.c 0x00000000 Number 0 ffixui.o ABSOLUTE - ../fplib/cfplib/fflt.c 0x00000000 Number 0 dflti.o ABSOLUTE ../fplib/cfplib/fflt.c 0x00000000 Number 0 fflti.o ABSOLUTE + ../fplib/cfplib/fflt.c 0x00000000 Number 0 dflti.o ABSOLUTE ../fplib/cfplib/fpinit.c 0x00000000 Number 0 fpinit.o ABSOLUTE ../fplib/cfplib/ieee_status.c 0x00000000 Number 0 ieee_status.o ABSOLUTE ../fplib/fmul6m.s 0x00000000 Number 0 fmul.o ABSOLUTE @@ -1649,6 +1705,7 @@ Image Symbol Table ..\\app\\src\\ota_protocol.c 0x00000000 Number 0 ota_protocol.o ABSOLUTE ..\\app\\src\\ota_server.c 0x00000000 Number 0 ota_server.o ABSOLUTE ..\\app\\src\\rf433.c 0x00000000 Number 0 rf433.o ABSOLUTE + ..\\app\\src\\rf433_decoder.c 0x00000000 Number 0 rf433_decoder.o ABSOLUTE ..\\app\\src\\sleep.c 0x00000000 Number 0 sleep.o ABSOLUTE ..\\app\\src\\switch_s.c 0x00000000 Number 0 switch_s.o ABSOLUTE ..\\app\\src\\system_xinc.c 0x00000000 Number 0 system_xinc.o ABSOLUTE @@ -1668,6 +1725,7 @@ Image Symbol Table ..\app\src\ota_protocol.c 0x00000000 Number 0 ota_protocol.o ABSOLUTE ..\app\src\ota_server.c 0x00000000 Number 0 ota_server.o ABSOLUTE ..\app\src\rf433.c 0x00000000 Number 0 rf433.o ABSOLUTE + ..\app\src\rf433_decoder.c 0x00000000 Number 0 rf433_decoder.o ABSOLUTE ..\app\src\sleep.c 0x00000000 Number 0 sleep.o ABSOLUTE ..\app\src\startup_xinc.s 0x00000000 Number 0 startup_xinc.o ABSOLUTE ..\app\src\switch_s.c 0x00000000 Number 0 switch_s.o ABSOLUTE @@ -1682,71 +1740,76 @@ Image Symbol Table __initial_sp 0x100007f0 Data 0 startup_xinc.o(STACK) .text 0x10002300 Section 0 rt_memclr.o(.text) .text 0x10002340 Section 346 aeabi_sdiv.o(.text) - Long Thumb to Thumb Veneer to key_click_state_reset 0x100024f1 Thumb Code 12 anon$$obj.o(Veneer$$Code) - Long Thumb to Thumb Veneer to app_key_click_detection 0x100024fd Thumb Code 12 anon$$obj.o(Veneer$$Code) - ram_code 0x10002508 Section 0 system_xinc.o(ram_code) - ram_code 0x10002520 Section 0 arch_main.o(ram_code) - ram_code 0x1000255c Section 0 xc_drv_bor.o(ram_code) - ram_code 0x10002614 Section 0 xc_drv_fmc_spi.o(ram_code) - ram_memcpy_bytes 0x10002615 Thumb Code 62 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_write_nbyte 0x10002653 Thumb Code 142 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_read_nbyte 0x100026e1 Thumb Code 120 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_wait_busy 0x1000280b Thumb Code 62 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_write_enable 0x10002849 Thumb Code 42 xc_drv_fmc_spi.o(ram_code) - xc_fmc_status_wait_idle 0x10002b9b Thumb Code 10 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_enable 0x10002ba5 Thumb Code 28 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_disable 0x10002bc1 Thumb Code 24 xc_drv_fmc_spi.o(ram_code) - ram_code 0x10002bdc Section 0 xc_drv_rtc.o(ram_code) - ram_code 0x10002c08 Section 0 timer.o(ram_code) - ram_code 0x10002cb0 Section 0 key.o(ram_code) - .data 0x10002d78 Section 4 system_xinc.o(.data) - .data 0x10002d7c Section 52 app_task.o(.data) - .data 0x10002db0 Section 1 app_task.o(.data) - .data 0x10002db1 Section 2 app_sec.o(.data) - .data 0x10002db4 Section 4 usr_server.o(.data) - .data 0x10002db8 Section 4 nvds.o(.data) - .data 0x10002dbc Section 2 xc_drv_adc.o(.data) - adc_it_val 0x10002dbc Data 2 xc_drv_adc.o(.data) - .data 0x10002dc0 Section 4 xc_drv_calib.o(.data) - mid 0x10002dc0 Data 4 xc_drv_calib.o(.data) - .data 0x10002dc8 Section 16 xc_drv_pwm.o(.data) - pwm_clk_init_state 0x10002dc8 Data 4 xc_drv_pwm.o(.data) - .data 0x10002dd8 Section 16 xc_drv_timer.o(.data) - .data 0x10002de8 Section 24 timer.o(.data) - .data 0x10002e00 Section 128 timeslice.o(.data) - .data 0x10002e80 Section 12 uart_1.o(.data) - .data 0x10002e8c Section 56 rf433.o(.data) - power 0x10002e91 Data 1 rf433.o(.data) - long_time 0x10002e9c Data 2 rf433.o(.data) - time_300ms 0x10002e9e Data 2 rf433.o(.data) - .data 0x10002ec4 Section 22 switch_s.o(.data) - s1_state 0x10002ec9 Data 1 switch_s.o(.data) - s2_state 0x10002eca Data 1 switch_s.o(.data) - s1_debounce_cnt 0x10002ed6 Data 2 switch_s.o(.data) - s2_debounce_cnt 0x10002ed8 Data 2 switch_s.o(.data) - .data 0x10002edc Section 20 key.o(.data) - last_key_val 0x10002edc Data 2 key.o(.data) - key_down_count 0x10002ede Data 2 key.o(.data) - key_up_count 0x10002ee0 Data 2 key.o(.data) - .data 0x10002ef0 Section 1 led.o(.data) - .data 0x10002ef1 Section 1 led.o(.data) - pwm_state 0x10002ef1 Data 1 led.o(.data) - .data 0x10002ef2 Section 1 ota_flash_interface.o(.data) - .data 0x10002ef4 Section 17 ota_protocol.o(.data) - .data 0x10002f06 Section 4 ota_server.o(.data) - .bss 0x10002f0c Section 28 arch_main.o(.bss) - .bss 0x10002f28 Section 24 nvds.o(.bss) - .bss 0x10002f40 Section 64 xc_drv_adc.o(.bss) - adc_value 0x10002f40 Data 64 xc_drv_adc.o(.bss) - .bss 0x10002f80 Section 16 xc_drv_clock.o(.bss) - .bss 0x10002f90 Section 12 xc_drv_uart.o(.bss) - .bss 0x10002f9c Section 512 fmc_spi_1.o(.bss) - .bss 0x1000319c Section 272 ota_flash_interface.o(.bss) - .bss 0x100032ac Section 276 ota_protocol.o(.bss) - fotas_write_env 0x100032ac Data 276 ota_protocol.o(.bss) - .bss 0x100033c0 Section 96 libspace.o(.bss) - HEAP 0x10003420 Section 0 startup_xinc.o(HEAP) - Heap_Mem 0x10003420 Data 0 startup_xinc.o(HEAP) + Long Thumb to Thumb Veneer to key_click_state_reset 0x100024fd Thumb Code 12 anon$$obj.o(Veneer$$Code) + Long Thumb to Thumb Veneer to app_key_click_detection 0x10002509 Thumb Code 12 anon$$obj.o(Veneer$$Code) + ram_code 0x10002514 Section 0 system_xinc.o(ram_code) + ram_code 0x1000252c Section 0 arch_main.o(ram_code) + ram_code 0x10002568 Section 0 xc_drv_bor.o(ram_code) + ram_code 0x10002620 Section 0 xc_drv_fmc_spi.o(ram_code) + ram_memcpy_bytes 0x10002621 Thumb Code 62 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_write_nbyte 0x1000265f Thumb Code 142 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_read_nbyte 0x100026ed Thumb Code 120 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_wait_busy 0x10002817 Thumb Code 62 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_write_enable 0x10002855 Thumb Code 42 xc_drv_fmc_spi.o(ram_code) + xc_fmc_status_wait_idle 0x10002ba7 Thumb Code 10 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_enable 0x10002bb1 Thumb Code 28 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_disable 0x10002bcd Thumb Code 24 xc_drv_fmc_spi.o(ram_code) + ram_code 0x10002be8 Section 0 xc_drv_rtc.o(ram_code) + ram_code 0x10002c14 Section 0 timer.o(ram_code) + ram_code 0x10002cc4 Section 0 key.o(ram_code) + .data 0x10002d8c Section 4 system_xinc.o(.data) + .data 0x10002d90 Section 52 app_task.o(.data) + .data 0x10002dc4 Section 1 app_task.o(.data) + .data 0x10002dc5 Section 2 app_sec.o(.data) + .data 0x10002dc8 Section 4 usr_server.o(.data) + .data 0x10002dcc Section 4 nvds.o(.data) + .data 0x10002dd0 Section 2 xc_drv_adc.o(.data) + adc_it_val 0x10002dd0 Data 2 xc_drv_adc.o(.data) + .data 0x10002dd4 Section 4 xc_drv_calib.o(.data) + mid 0x10002dd4 Data 4 xc_drv_calib.o(.data) + .data 0x10002dd8 Section 16 xc_drv_pwm.o(.data) + pwm_clk_init_state 0x10002dd8 Data 4 xc_drv_pwm.o(.data) + .data 0x10002de8 Section 16 xc_drv_timer.o(.data) + .data 0x10002df8 Section 24 timer.o(.data) + .data 0x10002e10 Section 144 timeslice.o(.data) + .data 0x10002ea0 Section 12 uart_1.o(.data) + .data 0x10002eac Section 60 rf433.o(.data) + power 0x10002eb1 Data 1 rf433.o(.data) + long_time 0x10002ebe Data 2 rf433.o(.data) + time_300ms 0x10002ec0 Data 2 rf433.o(.data) + .data 0x10002ee8 Section 22 switch_s.o(.data) + s1_state 0x10002eed Data 1 switch_s.o(.data) + s2_state 0x10002eee Data 1 switch_s.o(.data) + s1_debounce_cnt 0x10002efa Data 2 switch_s.o(.data) + s2_debounce_cnt 0x10002efc Data 2 switch_s.o(.data) + .data 0x10002f00 Section 20 key.o(.data) + last_key_val 0x10002f00 Data 2 key.o(.data) + key_down_count 0x10002f02 Data 2 key.o(.data) + key_up_count 0x10002f04 Data 2 key.o(.data) + .data 0x10002f14 Section 1 led.o(.data) + .data 0x10002f15 Section 1 led.o(.data) + pwm_state 0x10002f15 Data 1 led.o(.data) + .data 0x10002f16 Section 1 ota_flash_interface.o(.data) + .data 0x10002f18 Section 17 ota_protocol.o(.data) + .data 0x10002f2a Section 4 ota_server.o(.data) + .bss 0x10002f30 Section 28 arch_main.o(.bss) + .bss 0x10002f4c Section 24 nvds.o(.bss) + .bss 0x10002f64 Section 64 xc_drv_adc.o(.bss) + adc_value 0x10002f64 Data 64 xc_drv_adc.o(.bss) + .bss 0x10002fa4 Section 16 xc_drv_clock.o(.bss) + .bss 0x10002fb4 Section 12 xc_drv_uart.o(.bss) + .bss 0x10002fc0 Section 12 rf433.o(.bss) + .bss 0x10002fcc Section 512 fmc_spi_1.o(.bss) + .bss 0x100031cc Section 272 ota_flash_interface.o(.bss) + .bss 0x100032dc Section 276 ota_protocol.o(.bss) + fotas_write_env 0x100032dc Data 276 ota_protocol.o(.bss) + .bss 0x100033f0 Section 1102 rf433_decoder.o(.bss) + s_fifo 0x100033f0 Data 1036 rf433_decoder.o(.bss) + s_dec 0x100037fc Data 52 rf433_decoder.o(.bss) + s_repair 0x10003830 Data 14 rf433_decoder.o(.bss) + .bss 0x10003840 Section 96 libspace.o(.bss) + HEAP 0x100038a0 Section 0 startup_xinc.o(HEAP) + Heap_Mem 0x100038a0 Data 0 startup_xinc.o(HEAP) RESET 0x11012000 Section 192 startup_xinc.o(RESET) !!!main 0x110120c0 Section 8 __main.o(!!!main) !!!scatter 0x110120c8 Section 60 __scatter.o(!!!scatter) @@ -1888,219 +1951,243 @@ Image Symbol Table i.WDT_ResetInit 0x1101409c Section 0 system_xinc.o(i.WDT_ResetInit) WDT_ResetInit 0x1101409d Thumb Code 66 system_xinc.o(i.WDT_ResetInit) i._433_fun 0x110140e8 Section 0 rf433.o(i._433_fun) - i.__ARM_common_ll_muluu 0x11014194 Section 0 btod.o(i.__ARM_common_ll_muluu) - i.__ARM_common_switch8 0x110141c4 Section 0 arch_main.o(i.__ARM_common_switch8) - i.__ARM_fpclassify 0x110141e0 Section 0 fpclassify.o(i.__ARM_fpclassify) - i._is_digit 0x1101420c Section 0 __printf_wp.o(i._is_digit) - i._sys_exit 0x1101421a Section 0 system_xinc.o(i._sys_exit) - i.adc_intr_callback 0x1101421c Section 0 xc_drv_adc.o(i.adc_intr_callback) - i.app_create_advertising 0x110142a8 Section 0 app_task.o(i.app_create_advertising) - i.app_delete_advertising 0x110142f0 Section 0 app_task.o(i.app_delete_advertising) - i.app_get_dev_name 0x1101432c Section 0 app_task.o(i.app_get_dev_name) - i.app_init 0x11014354 Section 0 app_task.o(i.app_init) - i.app_key_callback_handler 0x11014398 Section 0 rf433.o(i.app_key_callback_handler) - i.app_key_click_detection 0x110143d8 Section 0 key.o(i.app_key_click_detection) - app_key_click_detection 0x110143d9 Thumb Code 100 key.o(i.app_key_click_detection) - i.app_key_init 0x11014440 Section 0 key.o(i.app_key_init) - i.app_key_scan 0x11014470 Section 0 key.o(i.app_key_scan) - i.app_msg_handler 0x110144c4 Section 0 app_task.o(i.app_msg_handler) - app_msg_handler 0x110144c5 Thumb Code 102 app_task.o(i.app_msg_handler) - i.app_op_flash 0x11014534 Section 0 ota_flash_interface.o(i.app_op_flash) - i.app_op_flash_on 0x11014570 Section 0 ota_flash_interface.o(i.app_op_flash_on) - i.app_sec_msg_dflt_handler 0x11014588 Section 0 app_sec.o(i.app_sec_msg_dflt_handler) - app_sec_msg_dflt_handler 0x11014589 Thumb Code 4 app_sec.o(i.app_sec_msg_dflt_handler) - i.app_set_adv_data 0x1101458c Section 0 app_task.o(i.app_set_adv_data) - i.app_start_advertising 0x110145f4 Section 0 app_task.o(i.app_start_advertising) - i.app_uart_init 0x11014630 Section 0 arch_main.o(i.app_uart_init) - i.ble_callback 0x11014688 Section 0 uart_1.o(i.ble_callback) - i.ble_flash_handle 0x110146a0 Section 0 ota_flash_interface.o(i.ble_flash_handle) - i.ble_flash_later_page_erase 0x11014758 Section 0 ota_flash_interface.o(i.ble_flash_later_page_erase) - i.ble_flash_later_write_page 0x11014774 Section 0 ota_flash_interface.o(i.ble_flash_later_write_page) - i.ble_message_process 0x110147a0 Section 0 uart_1.o(i.ble_message_process) - i.ble_mode_scan 0x110147d0 Section 0 rf433.o(i.ble_mode_scan) - i.bluetooth_init 0x11014818 Section 0 arch_main.o(i.bluetooth_init) - i.board_init 0x11014884 Section 0 arch_main.o(i.board_init) - i.chx_gpio_init 0x11014914 Section 0 rf433.o(i.chx_gpio_init) - i.clock_init 0x1101496c Section 0 sleep.o(i.clock_init) - i.custom_svc_add 0x110149dc Section 0 usr_server.o(i.custom_svc_add) - i.custom_svc_cb_att_read_get 0x11014ab8 Section 0 usr_server.o(i.custom_svc_cb_att_read_get) - i.custom_svc_cb_att_val_set 0x11014b68 Section 0 usr_server.o(i.custom_svc_cb_att_val_set) - i.custom_svc_cb_event_sent 0x11014d10 Section 0 usr_server.o(i.custom_svc_cb_event_sent) - i.delay_us 0x11014d5c Section 0 xc_drv_systick.o(i.delay_us) - i.extract32_16 0x11014d8c Section 0 xc_drv_fmc_spi.o(i.extract32_16) - i.ferror 0x11014d9a Section 0 system_xinc.o(i.ferror) - i.flash_init 0x11014da0 Section 0 arch_main.o(i.flash_init) - i.flash_run 0x11014f04 Section 0 rf433.o(i.flash_run) - i.flash_size_and_type_get 0x11014f12 Section 0 xc_drv_fmc_spi.o(i.flash_size_and_type_get) - i.fmc_spi_read 0x11014f68 Section 0 fmc_spi_1.o(i.fmc_spi_read) - i.gapc_bond_ind_handler 0x11014f94 Section 0 app_sec.o(i.gapc_bond_ind_handler) - gapc_bond_ind_handler 0x11014f95 Thumb Code 262 app_sec.o(i.gapc_bond_ind_handler) - i.gapc_bond_req_ind_handler 0x11015194 Section 0 app_sec.o(i.gapc_bond_req_ind_handler) - gapc_bond_req_ind_handler 0x11015195 Thumb Code 338 app_sec.o(i.gapc_bond_req_ind_handler) - i.gapc_callback 0x110153b0 Section 0 app_task.o(i.gapc_callback) - gapc_callback 0x110153b1 Thumb Code 358 app_task.o(i.gapc_callback) - i.gapc_encrypt_ind_handler 0x110156fc Section 0 app_sec.o(i.gapc_encrypt_ind_handler) - gapc_encrypt_ind_handler 0x110156fd Thumb Code 22 app_sec.o(i.gapc_encrypt_ind_handler) - i.gapc_encrypt_req_ind_handler 0x11015768 Section 0 app_sec.o(i.gapc_encrypt_req_ind_handler) - gapc_encrypt_req_ind_handler 0x11015769 Thumb Code 204 app_sec.o(i.gapc_encrypt_req_ind_handler) - i.gapc_get_device_info_req_ind 0x11015930 Section 0 app_task.o(i.gapc_get_device_info_req_ind) - gapc_get_device_info_req_ind 0x11015931 Thumb Code 132 app_task.o(i.gapc_get_device_info_req_ind) - i.gapm_callback 0x110159b8 Section 0 app_task.o(i.gapm_callback) - gapm_callback 0x110159b9 Thumb Code 164 app_task.o(i.gapm_callback) - i.gapm_cmp_evt 0x11015afc Section 0 app_task.o(i.gapm_cmp_evt) - gapm_cmp_evt 0x11015afd Thumb Code 98 app_task.o(i.gapm_cmp_evt) - i.get_app_env 0x11015ba0 Section 0 app_task.o(i.get_app_env) - i.get_checksum 0x11015ba8 Section 0 fmc_spi_1.o(i.get_checksum) - get_checksum 0x11015ba9 Thumb Code 28 fmc_spi_1.o(i.get_checksum) - i.get_click_event 0x11015bc4 Section 0 key.o(i.get_click_event) - get_click_event 0x11015bc5 Thumb Code 46 key.o(i.get_click_event) - i.get_fota_env_addr 0x11015bf4 Section 0 nvds.o(i.get_fota_env_addr) - i.gpio_intr_callback 0x11015c08 Section 0 switch_s.o(i.gpio_intr_callback) - i.gpio_key_check 0x11015c40 Section 0 key.o(i.gpio_key_check) - i.key_click_state_reset 0x11015c54 Section 0 key.o(i.key_click_state_reset) - key_click_state_reset 0x11015c55 Thumb Code 14 key.o(i.key_click_state_reset) - i.led_gpio_init 0x11015c68 Section 0 led.o(i.led_gpio_init) - i.main 0x11015ca4 Section 0 arch_main.o(i.main) - i.nvds_browse_tag 0x11015cf8 Section 0 nvds.o(i.nvds_browse_tag) - i.nvds_del 0x11015d2c Section 0 nvds.o(i.nvds_del) - i.nvds_erase 0x11015d64 Section 0 nvds.o(i.nvds_erase) - i.nvds_get 0x11015de4 Section 0 nvds.o(i.nvds_get) - i.nvds_init 0x11015e28 Section 0 nvds.o(i.nvds_init) - i.nvds_init_memory 0x11015e6c Section 0 nvds.o(i.nvds_init_memory) - i.nvds_is_magic_number_ok 0x11015e8c Section 0 nvds.o(i.nvds_is_magic_number_ok) - i.nvds_purge 0x11015eb8 Section 0 nvds.o(i.nvds_purge) - i.nvds_put 0x11015f20 Section 0 nvds.o(i.nvds_put) - i.nvds_read 0x11015ff4 Section 0 nvds.o(i.nvds_read) - i.nvds_space_init 0x1101601c Section 0 nvds.o(i.nvds_space_init) - i.nvds_walk_tag 0x110160a0 Section 0 nvds.o(i.nvds_walk_tag) - i.nvds_write 0x110160d8 Section 0 nvds.o(i.nvds_write) - i.ota_slave_send_data 0x11016100 Section 0 ota_server.o(i.ota_slave_send_data) - i.ota_srv_get_hdl_from_att_idx 0x1101619c Section 0 ota_server.o(i.ota_srv_get_hdl_from_att_idx) - i.ota_write_flash 0x110161ac Section 0 ota_protocol.o(i.ota_write_flash) - i.pwm3_toggle 0x110161e8 Section 0 led.o(i.pwm3_toggle) - i.pwm_capture_ch0_callback 0x1101621c Section 0 xc_drv_pwm.o(i.pwm_capture_ch0_callback) - i.pwm_capture_ch1_callback 0x11016220 Section 0 xc_drv_pwm.o(i.pwm_capture_ch1_callback) - i.pwm_capture_ch2_callback 0x11016224 Section 0 xc_drv_pwm.o(i.pwm_capture_ch2_callback) - i.pwm_freq_to_period 0x11016228 Section 0 xc_drv_pwm.o(i.pwm_freq_to_period) - pwm_freq_to_period 0x11016229 Thumb Code 148 xc_drv_pwm.o(i.pwm_freq_to_period) - i.pwm_pin_set 0x11016304 Section 0 xc_drv_pwm.o(i.pwm_pin_set) - i.read_user_data 0x110163c4 Section 0 fmc_spi_1.o(i.read_user_data) - i.reverse_verif_is_true 0x11016448 Section 0 xc_drv_fmc_spi.o(i.reverse_verif_is_true) - i.rf433_gpio_init 0x11016456 Section 0 rf433.o(i.rf433_gpio_init) - i.rf433_receive 0x11016474 Section 0 rf433.o(i.rf433_receive) - i.rom_env_host_init 0x1101656c Section 0 arch_main.o(i.rom_env_host_init) - i.scan_433 0x11016594 Section 0 rf433.o(i.scan_433) - i.scan_uart 0x11016730 Section 0 uart_1.o(i.scan_uart) - i.set_TaskComps_timer 0x110167c0 Section 0 timeslice.o(i.set_TaskComps_timer) - i.set_single_addr_name 0x110167d0 Section 0 arch_main.o(i.set_single_addr_name) - i.set_vector 0x1101686c Section 0 system_xinc.o(i.set_vector) - i.slave_send_data 0x110168a8 Section 0 usr_server.o(i.slave_send_data) - i.srv_get_hdl_from_att_idx 0x11016944 Section 0 usr_server.o(i.srv_get_hdl_from_att_idx) - i.switch_init 0x11016954 Section 0 switch_s.o(i.switch_init) - i.systick_callback 0x110169c4 Section 0 xc_drv_systick.o(i.systick_callback) - i.timer0_2_init 0x110169c8 Section 0 timer.o(i.timer0_2_init) - i.timer3_callback 0x11016a50 Section 0 xc_drv_timer.o(i.timer3_callback) - i.trigger_check_process 0x11016a54 Section 0 switch_s.o(i.trigger_check_process) - i.uart_user_handler 0x11016cc4 Section 0 xc_drv_uart.o(i.uart_user_handler) - i.updateTimer 0x11016d74 Section 0 timer.o(i.updateTimer) - i.wdt_init 0x11016d8a Section 0 arch_main.o(i.wdt_init) - i.wright_user_data 0x11016da4 Section 0 fmc_spi_1.o(i.wright_user_data) - i.xc_adc_data_average 0x11016e2c Section 0 xc_drv_adc.o(i.xc_adc_data_average) - i.xc_ble_activity_delete 0x11016ea8 Section 0 xc_gap_api.o(i.xc_ble_activity_delete) - i.xc_bor_init 0x11016ed0 Section 0 xc_drv_bor.o(i.xc_bor_init) - i.xc_clock_bbpll_common_cfg 0x11016f00 Section 0 xc_drv_clock.o(i.xc_clock_bbpll_common_cfg) - i.xc_clock_bbpll_freq_cfg 0x11016f40 Section 0 xc_drv_clock.o(i.xc_clock_bbpll_freq_cfg) - i.xc_clock_hfclk_in_get 0x1101702c Section 0 xc_drv_clock.o(i.xc_clock_hfclk_in_get) - i.xc_clock_hfclk_set 0x11017038 Section 0 xc_drv_clock.o(i.xc_clock_hfclk_set) - i.xc_clock_init_cfg 0x11017114 Section 0 xc_drv_clock.o(i.xc_clock_init_cfg) - i.xc_clock_lfclk_in_get 0x1101712c Section 0 xc_drv_clock.o(i.xc_clock_lfclk_in_get) - i.xc_clock_lfclk_set 0x11017138 Section 0 xc_drv_clock.o(i.xc_clock_lfclk_set) - i.xc_fota_dev_ack_cmd 0x110171a4 Section 0 ota_protocol.o(i.xc_fota_dev_ack_cmd) - i.xc_gpio_direction_config 0x110171cc Section 0 xc_drv_gpio.o(i.xc_gpio_direction_config) - i.xc_gpio_fun_sel 0x110171e8 Section 0 xc_drv_gpio.o(i.xc_gpio_fun_sel) - i.xc_gpio_init 0x11017210 Section 0 xc_drv_gpio.o(i.xc_gpio_init) - i.xc_gpio_it_config 0x11017240 Section 0 xc_drv_gpio.o(i.xc_gpio_it_config) - i.xc_gpio_mux_ctl 0x11017274 Section 0 xc_drv_gpio.o(i.xc_gpio_mux_ctl) - i.xc_gpio_pull_config 0x110172c0 Section 0 xc_drv_gpio.o(i.xc_gpio_pull_config) - i.xc_gpio_read_pin 0x110173a8 Section 0 xc_drv_gpio.o(i.xc_gpio_read_pin) - i.xc_gpio_toggle_pin 0x110173cc Section 0 xc_drv_gpio.o(i.xc_gpio_toggle_pin) - i.xc_gpio_write_pin 0x110173f8 Section 0 xc_drv_gpio.o(i.xc_gpio_write_pin) - i.xc_hfclk_set 0x11017414 Section 0 xc_drv_clock.o(i.xc_hfclk_set) - i.xc_ota_schedule 0x11017454 Section 0 ota_protocol.o(i.xc_ota_schedule) - i.xc_pwm_dutycycle_set 0x110174b8 Section 0 xc_drv_pwm.o(i.xc_pwm_dutycycle_set) - i.xc_pwm_init 0x11017528 Section 0 xc_drv_pwm.o(i.xc_pwm_init) - i.xc_pwm_start_all 0x11017608 Section 0 xc_drv_pwm.o(i.xc_pwm_start_all) - i.xc_pwr_vol_set 0x11017624 Section 0 xc_drv_pwr.o(i.xc_pwr_vol_set) - i.xc_rc32k_soft_calib_set 0x11017680 Section 0 xc_drv_calib.o(i.xc_rc32k_soft_calib_set) - i.xc_system_param_check 0x11017778 Section 0 xc_drv_clock.o(i.xc_system_param_check) - i.xc_systick_unit_get 0x11017994 Section 0 xc_drv_clock.o(i.xc_systick_unit_get) - i.xc_timer_init 0x110179a0 Section 0 xc_drv_timer.o(i.xc_timer_init) - i.xc_timer_set_value 0x11017ac0 Section 0 xc_drv_timer.o(i.xc_timer_set_value) - i.xc_timer_start 0x11017ae8 Section 0 xc_drv_timer.o(i.xc_timer_start) - i.xc_timer_us_to_ticks 0x11017b24 Section 0 xc_drv_timer.o(i.xc_timer_us_to_ticks) - xc_timer_us_to_ticks 0x11017b25 Thumb Code 230 xc_drv_timer.o(i.xc_timer_us_to_ticks) - i.xc_uart_init 0x11017c18 Section 0 xc_drv_uart.o(i.xc_uart_init) - i.xc_unique_identification_read 0x11017e08 Section 0 xc_drv_fmc_spi.o(i.xc_unique_identification_read) - i.xc_wdt_init 0x11017ef0 Section 0 xc_drv_wdt.o(i.xc_wdt_init) - i.xc_wdt_refresh 0x11017f58 Section 0 xc_drv_wdt.o(i.xc_wdt_refresh) - i.xc_wdt_reload 0x11017f98 Section 0 xc_drv_wdt.o(i.xc_wdt_reload) - i.xc_wdt_start 0x11017fdc Section 0 xc_drv_wdt.o(i.xc_wdt_start) - locale$$code 0x11018010 Section 44 lc_numeric_c.o(locale$$code) - locale$$code 0x1101803c Section 44 lc_ctype_c.o(locale$$code) - x$fpl$fmul 0x11018068 Section 176 fmul.o(x$fpl$fmul) - x$fpl$printf1 0x11018118 Section 16 printf1.o(x$fpl$printf1) - x$fpl$printf2 0x11018128 Section 16 printf2.o(x$fpl$printf2) - .constdata 0x11018138 Section 8 app_task.o(.constdata) - x$fpl$usenofp 0x11018138 Section 0 usenofp.o(x$fpl$usenofp) - .constdata 0x11018140 Section 56 app_task.o(.constdata) - .constdata 0x11018178 Section 2 arch_main.o(.constdata) - .constdata 0x1101817c Section 40 app_sec.o(.constdata) - .constdata 0x110181a4 Section 8 app_sec.o(.constdata) - .constdata 0x110181ac Section 134 usr_server.o(.constdata) - custom_server_atts 0x110181ac Data 36 usr_server.o(.constdata) - custom_src_cb 0x110181d0 Data 20 usr_server.o(.constdata) - __func__ 0x110181e4 Data 25 usr_server.o(.constdata) - __func__ 0x110181fd Data 27 usr_server.o(.constdata) - __func__ 0x11018218 Data 26 usr_server.o(.constdata) - .constdata 0x11018232 Section 4 nvds.o(.constdata) - .constdata 0x11018236 Section 31 xc_drv_pwm.o(.constdata) - pwm_offset 0x11018236 Data 12 xc_drv_pwm.o(.constdata) - __func__ 0x11018242 Data 19 xc_drv_pwm.o(.constdata) - .constdata 0x11018255 Section 4 xc_drv_timer.o(.constdata) - timer_offset 0x11018255 Data 4 xc_drv_timer.o(.constdata) - .constdata 0x1101825a Section 6 xc_drv_uart.o(.constdata) - uart_offset 0x1101825a Data 6 xc_drv_uart.o(.constdata) - .constdata 0x11018260 Section 16 ota_protocol.o(.constdata) - __func__ 0x11018260 Data 16 ota_protocol.o(.constdata) - .constdata 0x11018270 Section 40 _printf_hex_int_ll_ptr.o(.constdata) - uc_hextab 0x11018270 Data 20 _printf_hex_int_ll_ptr.o(.constdata) - lc_hextab 0x11018284 Data 20 _printf_hex_int_ll_ptr.o(.constdata) - .constdata 0x11018298 Section 17 __printf_flags_ss_wp.o(.constdata) - maptable 0x11018298 Data 17 __printf_flags_ss_wp.o(.constdata) - .constdata 0x110182a9 Section 64 fdiv.o(.constdata) - fdiv_tab 0x110182a9 Data 64 fdiv.o(.constdata) - .constdata 0x110182ec Section 8 _printf_wctomb.o(.constdata) - initial_mbstate 0x110182ec Data 8 _printf_wctomb.o(.constdata) - .constdata 0x110182f4 Section 38 _printf_fp_hex.o(.constdata) - lc_hextab 0x110182f4 Data 19 _printf_fp_hex.o(.constdata) - uc_hextab 0x11018307 Data 19 _printf_fp_hex.o(.constdata) - .constdata 0x1101831c Section 148 bigflt0.o(.constdata) - tenpwrs_x 0x1101831c Data 60 bigflt0.o(.constdata) - tenpwrs_i 0x11018358 Data 64 bigflt0.o(.constdata) - .conststring 0x110183b0 Section 207 app_task.o(.conststring) - .conststring 0x11018480 Section 85 usr_server.o(.conststring) - .conststring 0x110184d8 Section 98 xc_drv_pwm.o(.conststring) - locale$$data 0x1101858c Section 28 lc_numeric_c.o(locale$$data) - __lcnum_c_name 0x11018590 Data 2 lc_numeric_c.o(locale$$data) - __lcnum_c_start 0x11018598 Data 0 lc_numeric_c.o(locale$$data) - __lcnum_c_point 0x110185a4 Data 0 lc_numeric_c.o(locale$$data) - __lcnum_c_thousands 0x110185a6 Data 0 lc_numeric_c.o(locale$$data) - __lcnum_c_grouping 0x110185a7 Data 0 lc_numeric_c.o(locale$$data) - locale$$data 0x110185a8 Section 272 lc_ctype_c.o(locale$$data) - __lcnum_c_end 0x110185a8 Data 0 lc_numeric_c.o(locale$$data) - __lcctype_c_name 0x110185ac Data 2 lc_ctype_c.o(locale$$data) - __lcctype_c_start 0x110185b4 Data 0 lc_ctype_c.o(locale$$data) - __lcctype_c_end 0x110186b8 Data 0 lc_ctype_c.o(locale$$data) + i.__ARM_common_ll_muluu 0x1101416c Section 0 btod.o(i.__ARM_common_ll_muluu) + i.__ARM_common_switch8 0x1101419c Section 0 arch_main.o(i.__ARM_common_switch8) + i.__ARM_fpclassify 0x110141b8 Section 0 fpclassify.o(i.__ARM_fpclassify) + i._is_digit 0x110141e4 Section 0 __printf_wp.o(i._is_digit) + i._sys_exit 0x110141f2 Section 0 system_xinc.o(i._sys_exit) + i.adc_intr_callback 0x110141f4 Section 0 xc_drv_adc.o(i.adc_intr_callback) + i.app_create_advertising 0x11014280 Section 0 app_task.o(i.app_create_advertising) + i.app_delete_advertising 0x110142c8 Section 0 app_task.o(i.app_delete_advertising) + i.app_get_dev_name 0x11014304 Section 0 app_task.o(i.app_get_dev_name) + i.app_init 0x1101432c Section 0 app_task.o(i.app_init) + i.app_key_callback_handler 0x11014370 Section 0 rf433.o(i.app_key_callback_handler) + i.app_key_click_detection 0x110143b0 Section 0 key.o(i.app_key_click_detection) + app_key_click_detection 0x110143b1 Thumb Code 100 key.o(i.app_key_click_detection) + i.app_key_init 0x11014418 Section 0 key.o(i.app_key_init) + i.app_key_scan 0x11014448 Section 0 key.o(i.app_key_scan) + i.app_msg_handler 0x1101449c Section 0 app_task.o(i.app_msg_handler) + app_msg_handler 0x1101449d Thumb Code 102 app_task.o(i.app_msg_handler) + i.app_op_flash 0x1101450c Section 0 ota_flash_interface.o(i.app_op_flash) + i.app_op_flash_on 0x11014548 Section 0 ota_flash_interface.o(i.app_op_flash_on) + i.app_sec_msg_dflt_handler 0x11014560 Section 0 app_sec.o(i.app_sec_msg_dflt_handler) + app_sec_msg_dflt_handler 0x11014561 Thumb Code 4 app_sec.o(i.app_sec_msg_dflt_handler) + i.app_set_adv_data 0x11014564 Section 0 app_task.o(i.app_set_adv_data) + i.app_start_advertising 0x110145cc Section 0 app_task.o(i.app_start_advertising) + i.app_uart_init 0x11014608 Section 0 arch_main.o(i.app_uart_init) + i.ble_callback 0x11014660 Section 0 uart_1.o(i.ble_callback) + i.ble_flash_handle 0x11014678 Section 0 ota_flash_interface.o(i.ble_flash_handle) + i.ble_flash_later_page_erase 0x11014730 Section 0 ota_flash_interface.o(i.ble_flash_later_page_erase) + i.ble_flash_later_write_page 0x1101474c Section 0 ota_flash_interface.o(i.ble_flash_later_write_page) + i.ble_message_process 0x11014778 Section 0 uart_1.o(i.ble_message_process) + i.ble_mode_scan 0x110147a8 Section 0 rf433.o(i.ble_mode_scan) + i.bluetooth_init 0x110147f0 Section 0 arch_main.o(i.bluetooth_init) + i.board_init 0x1101485c Section 0 arch_main.o(i.board_init) + i.chx_gpio_init 0x110148f0 Section 0 rf433.o(i.chx_gpio_init) + i.clock_init 0x11014948 Section 0 sleep.o(i.clock_init) + i.custom_svc_add 0x110149b8 Section 0 usr_server.o(i.custom_svc_add) + i.custom_svc_cb_att_read_get 0x11014a94 Section 0 usr_server.o(i.custom_svc_cb_att_read_get) + i.custom_svc_cb_att_val_set 0x11014b44 Section 0 usr_server.o(i.custom_svc_cb_att_val_set) + i.custom_svc_cb_event_sent 0x11014cec Section 0 usr_server.o(i.custom_svc_cb_event_sent) + i.delay_us 0x11014d38 Section 0 xc_drv_systick.o(i.delay_us) + i.extract32_16 0x11014d68 Section 0 xc_drv_fmc_spi.o(i.extract32_16) + i.ferror 0x11014d76 Section 0 system_xinc.o(i.ferror) + i.flash_init 0x11014d7c Section 0 arch_main.o(i.flash_init) + i.flash_run 0x11014ee0 Section 0 rf433.o(i.flash_run) + i.flash_size_and_type_get 0x11014eee Section 0 xc_drv_fmc_spi.o(i.flash_size_and_type_get) + i.fmc_spi_read 0x11014f44 Section 0 fmc_spi_1.o(i.fmc_spi_read) + i.gapc_bond_ind_handler 0x11014f70 Section 0 app_sec.o(i.gapc_bond_ind_handler) + gapc_bond_ind_handler 0x11014f71 Thumb Code 262 app_sec.o(i.gapc_bond_ind_handler) + i.gapc_bond_req_ind_handler 0x11015170 Section 0 app_sec.o(i.gapc_bond_req_ind_handler) + gapc_bond_req_ind_handler 0x11015171 Thumb Code 338 app_sec.o(i.gapc_bond_req_ind_handler) + i.gapc_callback 0x1101538c Section 0 app_task.o(i.gapc_callback) + gapc_callback 0x1101538d Thumb Code 358 app_task.o(i.gapc_callback) + i.gapc_encrypt_ind_handler 0x110156d8 Section 0 app_sec.o(i.gapc_encrypt_ind_handler) + gapc_encrypt_ind_handler 0x110156d9 Thumb Code 22 app_sec.o(i.gapc_encrypt_ind_handler) + i.gapc_encrypt_req_ind_handler 0x11015744 Section 0 app_sec.o(i.gapc_encrypt_req_ind_handler) + gapc_encrypt_req_ind_handler 0x11015745 Thumb Code 204 app_sec.o(i.gapc_encrypt_req_ind_handler) + i.gapc_get_device_info_req_ind 0x1101590c Section 0 app_task.o(i.gapc_get_device_info_req_ind) + gapc_get_device_info_req_ind 0x1101590d Thumb Code 132 app_task.o(i.gapc_get_device_info_req_ind) + i.gapm_callback 0x11015994 Section 0 app_task.o(i.gapm_callback) + gapm_callback 0x11015995 Thumb Code 164 app_task.o(i.gapm_callback) + i.gapm_cmp_evt 0x11015ad8 Section 0 app_task.o(i.gapm_cmp_evt) + gapm_cmp_evt 0x11015ad9 Thumb Code 98 app_task.o(i.gapm_cmp_evt) + i.get_app_env 0x11015b7c Section 0 app_task.o(i.get_app_env) + i.get_checksum 0x11015b84 Section 0 fmc_spi_1.o(i.get_checksum) + get_checksum 0x11015b85 Thumb Code 28 fmc_spi_1.o(i.get_checksum) + i.get_click_event 0x11015ba0 Section 0 key.o(i.get_click_event) + get_click_event 0x11015ba1 Thumb Code 46 key.o(i.get_click_event) + i.get_fota_env_addr 0x11015bd0 Section 0 nvds.o(i.get_fota_env_addr) + i.gpio_intr_callback 0x11015be4 Section 0 switch_s.o(i.gpio_intr_callback) + i.gpio_key_check 0x11015c1c Section 0 key.o(i.gpio_key_check) + i.key_click_state_reset 0x11015c30 Section 0 key.o(i.key_click_state_reset) + key_click_state_reset 0x11015c31 Thumb Code 14 key.o(i.key_click_state_reset) + i.led_gpio_init 0x11015c44 Section 0 led.o(i.led_gpio_init) + i.main 0x11015c80 Section 0 arch_main.o(i.main) + i.nvds_browse_tag 0x11015cd4 Section 0 nvds.o(i.nvds_browse_tag) + i.nvds_del 0x11015d08 Section 0 nvds.o(i.nvds_del) + i.nvds_erase 0x11015d40 Section 0 nvds.o(i.nvds_erase) + i.nvds_get 0x11015dc0 Section 0 nvds.o(i.nvds_get) + i.nvds_init 0x11015e04 Section 0 nvds.o(i.nvds_init) + i.nvds_init_memory 0x11015e48 Section 0 nvds.o(i.nvds_init_memory) + i.nvds_is_magic_number_ok 0x11015e68 Section 0 nvds.o(i.nvds_is_magic_number_ok) + i.nvds_purge 0x11015e94 Section 0 nvds.o(i.nvds_purge) + i.nvds_put 0x11015efc Section 0 nvds.o(i.nvds_put) + i.nvds_read 0x11015fd0 Section 0 nvds.o(i.nvds_read) + i.nvds_space_init 0x11015ff8 Section 0 nvds.o(i.nvds_space_init) + i.nvds_walk_tag 0x1101607c Section 0 nvds.o(i.nvds_walk_tag) + i.nvds_write 0x110160b4 Section 0 nvds.o(i.nvds_write) + i.ota_slave_send_data 0x110160dc Section 0 ota_server.o(i.ota_slave_send_data) + i.ota_srv_get_hdl_from_att_idx 0x11016178 Section 0 ota_server.o(i.ota_srv_get_hdl_from_att_idx) + i.ota_write_flash 0x11016188 Section 0 ota_protocol.o(i.ota_write_flash) + i.pwm3_toggle 0x110161c4 Section 0 led.o(i.pwm3_toggle) + i.pwm_capture_ch0_callback 0x110161f8 Section 0 xc_drv_pwm.o(i.pwm_capture_ch0_callback) + i.pwm_capture_ch1_callback 0x110161fc Section 0 xc_drv_pwm.o(i.pwm_capture_ch1_callback) + i.pwm_capture_ch2_callback 0x11016200 Section 0 xc_drv_pwm.o(i.pwm_capture_ch2_callback) + i.pwm_freq_to_period 0x11016204 Section 0 xc_drv_pwm.o(i.pwm_freq_to_period) + pwm_freq_to_period 0x11016205 Thumb Code 148 xc_drv_pwm.o(i.pwm_freq_to_period) + i.pwm_pin_set 0x110162e0 Section 0 xc_drv_pwm.o(i.pwm_pin_set) + i.read_user_data 0x110163a0 Section 0 fmc_spi_1.o(i.read_user_data) + i.reverse_verif_is_true 0x11016424 Section 0 xc_drv_fmc_spi.o(i.reverse_verif_is_true) + i.rf433_abs_diff_u16 0x11016432 Section 0 rf433_decoder.o(i.rf433_abs_diff_u16) + rf433_abs_diff_u16 0x11016433 Thumb Code 14 rf433_decoder.o(i.rf433_abs_diff_u16) + i.rf433_decode_reset 0x11016440 Section 0 rf433_decoder.o(i.rf433_decode_reset) + rf433_decode_reset 0x11016441 Thumb Code 32 rf433_decoder.o(i.rf433_decode_reset) + i.rf433_decoder_get_frame 0x11016464 Section 0 rf433_decoder.o(i.rf433_decoder_get_frame) + i.rf433_decoder_init 0x11016488 Section 0 rf433_decoder.o(i.rf433_decoder_init) + i.rf433_decoder_process 0x110164bc Section 0 rf433_decoder.o(i.rf433_decoder_process) + i.rf433_decoder_sample 0x110164fc Section 0 rf433_decoder.o(i.rf433_decoder_sample) + i.rf433_gpio_init 0x11016570 Section 0 rf433.o(i.rf433_gpio_init) + i.rf433_is_long 0x11016590 Section 0 rf433_decoder.o(i.rf433_is_long) + rf433_is_long 0x11016591 Thumb Code 22 rf433_decoder.o(i.rf433_is_long) + i.rf433_is_short 0x110165ac Section 0 rf433_decoder.o(i.rf433_is_short) + rf433_is_short 0x110165ad Thumb Code 22 rf433_decoder.o(i.rf433_is_short) + i.rf433_limit_t 0x110165c8 Section 0 rf433_decoder.o(i.rf433_limit_t) + rf433_limit_t 0x110165c9 Thumb Code 16 rf433_decoder.o(i.rf433_limit_t) + i.rf433_output_code 0x110165d8 Section 0 rf433_decoder.o(i.rf433_output_code) + rf433_output_code 0x110165d9 Thumb Code 84 rf433_decoder.o(i.rf433_output_code) + i.rf433_process_clean_pulse 0x11016634 Section 0 rf433_decoder.o(i.rf433_process_clean_pulse) + rf433_process_clean_pulse 0x11016635 Thumb Code 538 rf433_decoder.o(i.rf433_process_clean_pulse) + i.rf433_repair_input_pulse 0x1101687c Section 0 rf433_decoder.o(i.rf433_repair_input_pulse) + rf433_repair_input_pulse 0x1101687d Thumb Code 188 rf433_decoder.o(i.rf433_repair_input_pulse) + i.rf433_repair_reset 0x1101693c Section 0 rf433_decoder.o(i.rf433_repair_reset) + rf433_repair_reset 0x1101693d Thumb Code 20 rf433_decoder.o(i.rf433_repair_reset) + i.rf433_update_range_by_t 0x11016954 Section 0 rf433_decoder.o(i.rf433_update_range_by_t) + rf433_update_range_by_t 0x11016955 Thumb Code 104 rf433_decoder.o(i.rf433_update_range_by_t) + i.rom_env_host_init 0x110169c0 Section 0 arch_main.o(i.rom_env_host_init) + i.scan_433 0x110169e8 Section 0 rf433.o(i.scan_433) + i.scan_uart 0x11016b98 Section 0 uart_1.o(i.scan_uart) + i.set_TaskComps_timer 0x11016c28 Section 0 timeslice.o(i.set_TaskComps_timer) + i.set_single_addr_name 0x11016c38 Section 0 arch_main.o(i.set_single_addr_name) + i.set_vector 0x11016cd4 Section 0 system_xinc.o(i.set_vector) + i.slave_send_data 0x11016d10 Section 0 usr_server.o(i.slave_send_data) + i.srv_get_hdl_from_att_idx 0x11016dac Section 0 usr_server.o(i.srv_get_hdl_from_att_idx) + i.switch_init 0x11016dbc Section 0 switch_s.o(i.switch_init) + i.systick_callback 0x11016e2c Section 0 xc_drv_systick.o(i.systick_callback) + i.timer0_2_init 0x11016e30 Section 0 timer.o(i.timer0_2_init) + i.timer3_callback 0x11016eb8 Section 0 xc_drv_timer.o(i.timer3_callback) + i.trigger_check_process 0x11016ebc Section 0 switch_s.o(i.trigger_check_process) + i.uart_user_handler 0x1101712c Section 0 xc_drv_uart.o(i.uart_user_handler) + i.updateTimer 0x110171dc Section 0 timer.o(i.updateTimer) + i.wdt_init 0x110171f2 Section 0 arch_main.o(i.wdt_init) + i.wright_user_data 0x1101720c Section 0 fmc_spi_1.o(i.wright_user_data) + i.xc_adc_data_average 0x11017294 Section 0 xc_drv_adc.o(i.xc_adc_data_average) + i.xc_ble_activity_delete 0x11017310 Section 0 xc_gap_api.o(i.xc_ble_activity_delete) + i.xc_bor_init 0x11017338 Section 0 xc_drv_bor.o(i.xc_bor_init) + i.xc_clock_bbpll_common_cfg 0x11017368 Section 0 xc_drv_clock.o(i.xc_clock_bbpll_common_cfg) + i.xc_clock_bbpll_freq_cfg 0x110173a8 Section 0 xc_drv_clock.o(i.xc_clock_bbpll_freq_cfg) + i.xc_clock_hfclk_in_get 0x11017494 Section 0 xc_drv_clock.o(i.xc_clock_hfclk_in_get) + i.xc_clock_hfclk_set 0x110174a0 Section 0 xc_drv_clock.o(i.xc_clock_hfclk_set) + i.xc_clock_init_cfg 0x1101757c Section 0 xc_drv_clock.o(i.xc_clock_init_cfg) + i.xc_clock_lfclk_in_get 0x11017594 Section 0 xc_drv_clock.o(i.xc_clock_lfclk_in_get) + i.xc_clock_lfclk_set 0x110175a0 Section 0 xc_drv_clock.o(i.xc_clock_lfclk_set) + i.xc_fota_dev_ack_cmd 0x1101760c Section 0 ota_protocol.o(i.xc_fota_dev_ack_cmd) + i.xc_gpio_direction_config 0x11017634 Section 0 xc_drv_gpio.o(i.xc_gpio_direction_config) + i.xc_gpio_fun_sel 0x11017650 Section 0 xc_drv_gpio.o(i.xc_gpio_fun_sel) + i.xc_gpio_init 0x11017678 Section 0 xc_drv_gpio.o(i.xc_gpio_init) + i.xc_gpio_it_config 0x110176a8 Section 0 xc_drv_gpio.o(i.xc_gpio_it_config) + i.xc_gpio_mux_ctl 0x110176dc Section 0 xc_drv_gpio.o(i.xc_gpio_mux_ctl) + i.xc_gpio_pull_config 0x11017728 Section 0 xc_drv_gpio.o(i.xc_gpio_pull_config) + i.xc_gpio_read_pin 0x11017810 Section 0 xc_drv_gpio.o(i.xc_gpio_read_pin) + i.xc_gpio_toggle_pin 0x11017834 Section 0 xc_drv_gpio.o(i.xc_gpio_toggle_pin) + i.xc_gpio_write_pin 0x11017860 Section 0 xc_drv_gpio.o(i.xc_gpio_write_pin) + i.xc_hfclk_set 0x1101787c Section 0 xc_drv_clock.o(i.xc_hfclk_set) + i.xc_ota_schedule 0x110178bc Section 0 ota_protocol.o(i.xc_ota_schedule) + i.xc_pwm_dutycycle_set 0x11017920 Section 0 xc_drv_pwm.o(i.xc_pwm_dutycycle_set) + i.xc_pwm_init 0x11017990 Section 0 xc_drv_pwm.o(i.xc_pwm_init) + i.xc_pwm_start_all 0x11017a70 Section 0 xc_drv_pwm.o(i.xc_pwm_start_all) + i.xc_pwr_vol_set 0x11017a8c Section 0 xc_drv_pwr.o(i.xc_pwr_vol_set) + i.xc_rc32k_soft_calib_set 0x11017ae8 Section 0 xc_drv_calib.o(i.xc_rc32k_soft_calib_set) + i.xc_system_param_check 0x11017be0 Section 0 xc_drv_clock.o(i.xc_system_param_check) + i.xc_systick_unit_get 0x11017dfc Section 0 xc_drv_clock.o(i.xc_systick_unit_get) + i.xc_timer_init 0x11017e08 Section 0 xc_drv_timer.o(i.xc_timer_init) + i.xc_timer_set_value 0x11017f28 Section 0 xc_drv_timer.o(i.xc_timer_set_value) + i.xc_timer_start 0x11017f50 Section 0 xc_drv_timer.o(i.xc_timer_start) + i.xc_timer_us_to_ticks 0x11017f8c Section 0 xc_drv_timer.o(i.xc_timer_us_to_ticks) + xc_timer_us_to_ticks 0x11017f8d Thumb Code 230 xc_drv_timer.o(i.xc_timer_us_to_ticks) + i.xc_uart_init 0x11018080 Section 0 xc_drv_uart.o(i.xc_uart_init) + i.xc_unique_identification_read 0x11018270 Section 0 xc_drv_fmc_spi.o(i.xc_unique_identification_read) + i.xc_wdt_init 0x11018358 Section 0 xc_drv_wdt.o(i.xc_wdt_init) + i.xc_wdt_refresh 0x110183c0 Section 0 xc_drv_wdt.o(i.xc_wdt_refresh) + i.xc_wdt_reload 0x11018400 Section 0 xc_drv_wdt.o(i.xc_wdt_reload) + i.xc_wdt_start 0x11018444 Section 0 xc_drv_wdt.o(i.xc_wdt_start) + locale$$code 0x11018478 Section 44 lc_numeric_c.o(locale$$code) + locale$$code 0x110184a4 Section 44 lc_ctype_c.o(locale$$code) + x$fpl$fmul 0x110184d0 Section 176 fmul.o(x$fpl$fmul) + x$fpl$printf1 0x11018580 Section 16 printf1.o(x$fpl$printf1) + x$fpl$printf2 0x11018590 Section 16 printf2.o(x$fpl$printf2) + .constdata 0x110185a0 Section 8 app_task.o(.constdata) + x$fpl$usenofp 0x110185a0 Section 0 usenofp.o(x$fpl$usenofp) + .constdata 0x110185a8 Section 56 app_task.o(.constdata) + .constdata 0x110185e0 Section 2 arch_main.o(.constdata) + .constdata 0x110185e4 Section 40 app_sec.o(.constdata) + .constdata 0x1101860c Section 8 app_sec.o(.constdata) + .constdata 0x11018614 Section 134 usr_server.o(.constdata) + custom_server_atts 0x11018614 Data 36 usr_server.o(.constdata) + custom_src_cb 0x11018638 Data 20 usr_server.o(.constdata) + __func__ 0x1101864c Data 25 usr_server.o(.constdata) + __func__ 0x11018665 Data 27 usr_server.o(.constdata) + __func__ 0x11018680 Data 26 usr_server.o(.constdata) + .constdata 0x1101869a Section 4 nvds.o(.constdata) + .constdata 0x1101869e Section 31 xc_drv_pwm.o(.constdata) + pwm_offset 0x1101869e Data 12 xc_drv_pwm.o(.constdata) + __func__ 0x110186aa Data 19 xc_drv_pwm.o(.constdata) + .constdata 0x110186bd Section 4 xc_drv_timer.o(.constdata) + timer_offset 0x110186bd Data 4 xc_drv_timer.o(.constdata) + .constdata 0x110186c2 Section 6 xc_drv_uart.o(.constdata) + uart_offset 0x110186c2 Data 6 xc_drv_uart.o(.constdata) + .constdata 0x110186c8 Section 16 ota_protocol.o(.constdata) + __func__ 0x110186c8 Data 16 ota_protocol.o(.constdata) + .constdata 0x110186d8 Section 40 _printf_hex_int_ll_ptr.o(.constdata) + uc_hextab 0x110186d8 Data 20 _printf_hex_int_ll_ptr.o(.constdata) + lc_hextab 0x110186ec Data 20 _printf_hex_int_ll_ptr.o(.constdata) + .constdata 0x11018700 Section 17 __printf_flags_ss_wp.o(.constdata) + maptable 0x11018700 Data 17 __printf_flags_ss_wp.o(.constdata) + .constdata 0x11018711 Section 64 fdiv.o(.constdata) + fdiv_tab 0x11018711 Data 64 fdiv.o(.constdata) + .constdata 0x11018754 Section 8 _printf_wctomb.o(.constdata) + initial_mbstate 0x11018754 Data 8 _printf_wctomb.o(.constdata) + .constdata 0x1101875c Section 38 _printf_fp_hex.o(.constdata) + lc_hextab 0x1101875c Data 19 _printf_fp_hex.o(.constdata) + uc_hextab 0x1101876f Data 19 _printf_fp_hex.o(.constdata) + .constdata 0x11018784 Section 148 bigflt0.o(.constdata) + tenpwrs_x 0x11018784 Data 60 bigflt0.o(.constdata) + tenpwrs_i 0x110187c0 Data 64 bigflt0.o(.constdata) + .conststring 0x11018818 Section 207 app_task.o(.conststring) + .conststring 0x110188e8 Section 85 usr_server.o(.conststring) + .conststring 0x11018940 Section 98 xc_drv_pwm.o(.conststring) + .conststring 0x110189a4 Section 181 rf433_decoder.o(.conststring) + locale$$data 0x11018aac Section 28 lc_numeric_c.o(locale$$data) + __lcnum_c_name 0x11018ab0 Data 2 lc_numeric_c.o(locale$$data) + __lcnum_c_start 0x11018ab8 Data 0 lc_numeric_c.o(locale$$data) + __lcnum_c_point 0x11018ac4 Data 0 lc_numeric_c.o(locale$$data) + __lcnum_c_thousands 0x11018ac6 Data 0 lc_numeric_c.o(locale$$data) + __lcnum_c_grouping 0x11018ac7 Data 0 lc_numeric_c.o(locale$$data) + locale$$data 0x11018ac8 Section 272 lc_ctype_c.o(locale$$data) + __lcnum_c_end 0x11018ac8 Data 0 lc_numeric_c.o(locale$$data) + __lcctype_c_name 0x11018acc Data 2 lc_ctype_c.o(locale$$data) + __lcctype_c_start 0x11018ad4 Data 0 lc_ctype_c.o(locale$$data) + __lcctype_c_end 0x11018bd8 Data 0 lc_ctype_c.o(locale$$data) ram_em 0x53006c00 Section 512 nvds.o(ram_em) ram_em 0x53006e00 Section 2091 ota_protocol.o(ram_em) @@ -2422,102 +2509,107 @@ Image Symbol Table Long Thumb to Thumb Veneer to xc_pwm_dutycycle_set 0x100024c1 Thumb Code 12 anon$$obj.o(Veneer$$Code) Long Thumb to Thumb Veneer to TaskRemarks 0x100024cd Thumb Code 12 anon$$obj.o(Veneer$$Code) Long Thumb to Thumb Veneer to updateTimer 0x100024d9 Thumb Code 12 anon$$obj.o(Veneer$$Code) - Long Thumb to Thumb Veneer to rf433_receive 0x100024e5 Thumb Code 12 anon$$obj.o(Veneer$$Code) - sendchar 0x10002509 Thumb Code 18 system_xinc.o(ram_code) - fputc 0x1000251b Thumb Code 2 system_xinc.o(ram_code) - rf_rssi_convert 0x10002521 Thumb Code 14 arch_main.o(ram_code) - PendSV_Handler 0x1000252f Thumb Code 34 arch_main.o(ram_code) - MPU_Handler 0x1000255d Thumb Code 170 xc_drv_bor.o(ram_code) - xc_fmc_spi_init_oprt 0x10002759 Thumb Code 138 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_wake_up 0x100027e3 Thumb Code 40 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_erase_page 0x10002873 Thumb Code 80 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_write_page 0x100028c3 Thumb Code 104 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_otp_read_page 0x1000292b Thumb Code 166 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_read_page 0x100029d1 Thumb Code 126 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_read 0x10002a4f Thumb Code 142 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_ruid 0x10002add Thumb Code 104 xc_drv_fmc_spi.o(ram_code) - xc_fmc_spi_flash_rdid 0x10002b45 Thumb Code 86 xc_drv_fmc_spi.o(ram_code) - RTC_Handler 0x10002bdd Thumb Code 40 xc_drv_rtc.o(ram_code) - timer0_callback 0x10002c09 Thumb Code 118 timer.o(ram_code) - timer1_callback 0x10002c7f Thumb Code 24 timer.o(ram_code) - timer2_callback 0x10002c97 Thumb Code 8 timer.o(ram_code) - app_key_hold_detection 0x10002cb1 Thumb Code 52 key.o(ram_code) - app_new_key_detection 0x10002ce5 Thumb Code 114 key.o(ram_code) - key_check_process 0x10002d57 Thumb Code 30 key.o(ram_code) - __stdout 0x10002d78 Data 4 system_xinc.o(.data) - app_env 0x10002d7c Data 52 app_task.o(.data) - app_state 0x10002db0 Data 1 app_task.o(.data) - bond_flag 0x10002db1 Data 1 app_sec.o(.data) - app_sec_env 0x10002db2 Data 1 app_sec.o(.data) - srv_user_lid 0x10002db4 Data 1 usr_server.o(.data) - custom_svc_tx_char_notify 0x10002db5 Data 1 usr_server.o(.data) - custom_svc_start_hdl 0x10002db6 Data 2 usr_server.o(.data) - nvds_temp_buf 0x10002db8 Data 4 nvds.o(.data) - period 0x10002dd0 Data 8 xc_drv_pwm.o(.data) - timer_n_callback 0x10002dd8 Data 16 xc_drv_timer.o(.data) - led_1_count_time 0x10002de8 Data 2 timer.o(.data) - led_2_count_time 0x10002dea Data 2 timer.o(.data) - led1_on_timer 0x10002dec Data 2 timer.o(.data) - led2_on_timer 0x10002dee Data 2 timer.o(.data) - timer1 0x10002df0 Data 8 timer.o(.data) - timer2 0x10002df8 Data 8 timer.o(.data) - TaskComps 0x10002e00 Data 128 timeslice.o(.data) - receive_mode 0x10002e80 Data 1 uart_1.o(.data) - p_ble_data_msg 0x10002e84 Data 4 uart_1.o(.data) - user_ble_data_msg 0x10002e88 Data 4 uart_1.o(.data) - adress_H 0x10002e8c Data 1 rf433.o(.data) - adress_L 0x10002e8d Data 1 rf433.o(.data) - key_state 0x10002e8e Data 1 rf433.o(.data) - KEY_STATE_re 0x10002e8f Data 1 rf433.o(.data) - long_flag_s 0x10002e90 Data 1 rf433.o(.data) - res_data 0x10002e92 Data 1 rf433.o(.data) - adress_ture_flag 0x10002e93 Data 1 rf433.o(.data) - adress_index_ture 0x10002e94 Data 1 rf433.o(.data) - adress_index 0x10002e95 Data 1 rf433.o(.data) - flash_ch1_state 0x10002e96 Data 1 rf433.o(.data) - flash_ch2_state 0x10002e97 Data 1 rf433.o(.data) - high_level_time 0x10002e98 Data 1 rf433.o(.data) - low_level_time 0x10002e99 Data 1 rf433.o(.data) - receive_data_cnt 0x10002e9a Data 1 rf433.o(.data) - rf_flag 0x10002ea0 Data 2 rf433.o(.data) - receive_temp 0x10002ea4 Data 4 rf433.o(.data) - receive_data 0x10002ea8 Data 4 rf433.o(.data) - adress_H_array 0x10002eac Data 5 rf433.o(.data) - adress_L_array 0x10002eb1 Data 5 rf433.o(.data) - adress_ch_flag 0x10002eb6 Data 5 rf433.o(.data) - Key_TypeDef 0x10002ebc Data 8 rf433.o(.data) - trig1_cnt 0x10002ec4 Data 1 switch_s.o(.data) - trig1_wait 0x10002ec5 Data 1 switch_s.o(.data) - trig2_cnt 0x10002ec6 Data 1 switch_s.o(.data) - trig2_wait 0x10002ec7 Data 1 switch_s.o(.data) - rf433_sw_flag 0x10002ec8 Data 1 switch_s.o(.data) - switch1_RELEASE_flag 0x10002ecb Data 1 switch_s.o(.data) - switch2_RELEASE_flag 0x10002ecc Data 1 switch_s.o(.data) - s1_first_press_flag 0x10002ecd Data 1 switch_s.o(.data) - s2_first_press_flag 0x10002ece Data 1 switch_s.o(.data) - S1_first_on_state 0x10002ecf Data 1 switch_s.o(.data) - S2_first_on_state 0x10002ed0 Data 1 switch_s.o(.data) - trig1_timeout 0x10002ed2 Data 2 switch_s.o(.data) - trig2_timeout 0x10002ed4 Data 2 switch_s.o(.data) - key_callback 0x10002ee4 Data 4 key.o(.data) - g_key_click_state 0x10002ee8 Data 8 key.o(.data) - led_state 0x10002ef0 Data 1 led.o(.data) - app_op_flash_flag 0x10002ef2 Data 1 ota_flash_interface.o(.data) - ota_flag 0x10002ef4 Data 1 ota_protocol.o(.data) - jump2app 0x10002ef8 Data 4 ota_protocol.o(.data) - fotas_status 0x10002efc Data 9 ota_protocol.o(.data) - ota_srv_user_lid 0x10002f06 Data 1 ota_server.o(.data) - ota_svc_tx_char_notify 0x10002f07 Data 1 ota_server.o(.data) - ota_svc_start_hdl 0x10002f08 Data 2 ota_server.o(.data) - adv_info 0x10002f0c Data 28 arch_main.o(.bss) - nvds_env 0x10002f28 Data 24 nvds.o(.bss) - clock_cb 0x10002f80 Data 16 xc_drv_clock.o(.bss) - uart_ctl_block 0x10002f90 Data 12 xc_drv_uart.o(.bss) - r_data 0x10002f9c Data 256 fmc_spi_1.o(.bss) - app_data 0x1000309c Data 256 fmc_spi_1.o(.bss) - op_flash 0x1000319c Data 272 ota_flash_interface.o(.bss) - __libspace_start 0x100033c0 Data 96 libspace.o(.bss) - __temporary_stack_top$libspace 0x10003420 Data 0 libspace.o(.bss) + Long Thumb to Thumb Veneer to xc_gpio_read_pin 0x100024e5 Thumb Code 12 anon$$obj.o(Veneer$$Code) + Long Thumb to Thumb Veneer to rf433_decoder_sample 0x100024f1 Thumb Code 12 anon$$obj.o(Veneer$$Code) + sendchar 0x10002515 Thumb Code 18 system_xinc.o(ram_code) + fputc 0x10002527 Thumb Code 2 system_xinc.o(ram_code) + rf_rssi_convert 0x1000252d Thumb Code 14 arch_main.o(ram_code) + PendSV_Handler 0x1000253b Thumb Code 34 arch_main.o(ram_code) + MPU_Handler 0x10002569 Thumb Code 170 xc_drv_bor.o(ram_code) + xc_fmc_spi_init_oprt 0x10002765 Thumb Code 138 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_wake_up 0x100027ef Thumb Code 40 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_erase_page 0x1000287f Thumb Code 80 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_write_page 0x100028cf Thumb Code 104 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_otp_read_page 0x10002937 Thumb Code 166 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_read_page 0x100029dd Thumb Code 126 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_read 0x10002a5b Thumb Code 142 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_ruid 0x10002ae9 Thumb Code 104 xc_drv_fmc_spi.o(ram_code) + xc_fmc_spi_flash_rdid 0x10002b51 Thumb Code 86 xc_drv_fmc_spi.o(ram_code) + RTC_Handler 0x10002be9 Thumb Code 40 xc_drv_rtc.o(ram_code) + timer0_callback 0x10002c15 Thumb Code 118 timer.o(ram_code) + timer1_callback 0x10002c8b Thumb Code 24 timer.o(ram_code) + timer2_callback 0x10002ca3 Thumb Code 16 timer.o(ram_code) + app_key_hold_detection 0x10002cc5 Thumb Code 52 key.o(ram_code) + app_new_key_detection 0x10002cf9 Thumb Code 114 key.o(ram_code) + key_check_process 0x10002d6b Thumb Code 30 key.o(ram_code) + __stdout 0x10002d8c Data 4 system_xinc.o(.data) + app_env 0x10002d90 Data 52 app_task.o(.data) + app_state 0x10002dc4 Data 1 app_task.o(.data) + bond_flag 0x10002dc5 Data 1 app_sec.o(.data) + app_sec_env 0x10002dc6 Data 1 app_sec.o(.data) + srv_user_lid 0x10002dc8 Data 1 usr_server.o(.data) + custom_svc_tx_char_notify 0x10002dc9 Data 1 usr_server.o(.data) + custom_svc_start_hdl 0x10002dca Data 2 usr_server.o(.data) + nvds_temp_buf 0x10002dcc Data 4 nvds.o(.data) + period 0x10002de0 Data 8 xc_drv_pwm.o(.data) + timer_n_callback 0x10002de8 Data 16 xc_drv_timer.o(.data) + led_1_count_time 0x10002df8 Data 2 timer.o(.data) + led_2_count_time 0x10002dfa Data 2 timer.o(.data) + led1_on_timer 0x10002dfc Data 2 timer.o(.data) + led2_on_timer 0x10002dfe Data 2 timer.o(.data) + timer1 0x10002e00 Data 8 timer.o(.data) + timer2 0x10002e08 Data 8 timer.o(.data) + TaskComps 0x10002e10 Data 144 timeslice.o(.data) + receive_mode 0x10002ea0 Data 1 uart_1.o(.data) + p_ble_data_msg 0x10002ea4 Data 4 uart_1.o(.data) + user_ble_data_msg 0x10002ea8 Data 4 uart_1.o(.data) + adress_H 0x10002eac Data 1 rf433.o(.data) + adress_L 0x10002ead Data 1 rf433.o(.data) + key_state 0x10002eae Data 1 rf433.o(.data) + KEY_STATE_re 0x10002eaf Data 1 rf433.o(.data) + long_flag_s 0x10002eb0 Data 1 rf433.o(.data) + res_data 0x10002eb2 Data 1 rf433.o(.data) + adress_ture_flag 0x10002eb3 Data 1 rf433.o(.data) + adress_index_ture 0x10002eb4 Data 1 rf433.o(.data) + adress_index 0x10002eb5 Data 1 rf433.o(.data) + flash_ch1_state 0x10002eb6 Data 1 rf433.o(.data) + flash_ch2_state 0x10002eb7 Data 1 rf433.o(.data) + last_H_adress 0x10002eb8 Data 1 rf433.o(.data) + last_L_adress 0x10002eb9 Data 1 rf433.o(.data) + high_level_time 0x10002eba Data 1 rf433.o(.data) + low_level_time 0x10002ebb Data 1 rf433.o(.data) + receive_data_cnt 0x10002ebc Data 1 rf433.o(.data) + rf_flag 0x10002ec2 Data 2 rf433.o(.data) + long_timer 0x10002ec4 Data 2 rf433.o(.data) + receive_temp 0x10002ec8 Data 4 rf433.o(.data) + receive_data 0x10002ecc Data 4 rf433.o(.data) + adress_H_array 0x10002ed0 Data 5 rf433.o(.data) + adress_L_array 0x10002ed5 Data 5 rf433.o(.data) + adress_ch_flag 0x10002eda Data 5 rf433.o(.data) + Key_TypeDef 0x10002ee0 Data 8 rf433.o(.data) + trig1_cnt 0x10002ee8 Data 1 switch_s.o(.data) + trig1_wait 0x10002ee9 Data 1 switch_s.o(.data) + trig2_cnt 0x10002eea Data 1 switch_s.o(.data) + trig2_wait 0x10002eeb Data 1 switch_s.o(.data) + rf433_sw_flag 0x10002eec Data 1 switch_s.o(.data) + switch1_RELEASE_flag 0x10002eef Data 1 switch_s.o(.data) + switch2_RELEASE_flag 0x10002ef0 Data 1 switch_s.o(.data) + s1_first_press_flag 0x10002ef1 Data 1 switch_s.o(.data) + s2_first_press_flag 0x10002ef2 Data 1 switch_s.o(.data) + S1_first_on_state 0x10002ef3 Data 1 switch_s.o(.data) + S2_first_on_state 0x10002ef4 Data 1 switch_s.o(.data) + trig1_timeout 0x10002ef6 Data 2 switch_s.o(.data) + trig2_timeout 0x10002ef8 Data 2 switch_s.o(.data) + key_callback 0x10002f08 Data 4 key.o(.data) + g_key_click_state 0x10002f0c Data 8 key.o(.data) + led_state 0x10002f14 Data 1 led.o(.data) + app_op_flash_flag 0x10002f16 Data 1 ota_flash_interface.o(.data) + ota_flag 0x10002f18 Data 1 ota_protocol.o(.data) + jump2app 0x10002f1c Data 4 ota_protocol.o(.data) + fotas_status 0x10002f20 Data 9 ota_protocol.o(.data) + ota_srv_user_lid 0x10002f2a Data 1 ota_server.o(.data) + ota_svc_tx_char_notify 0x10002f2b Data 1 ota_server.o(.data) + ota_svc_start_hdl 0x10002f2c Data 2 ota_server.o(.data) + adv_info 0x10002f30 Data 28 arch_main.o(.bss) + nvds_env 0x10002f4c Data 24 nvds.o(.bss) + clock_cb 0x10002fa4 Data 16 xc_drv_clock.o(.bss) + uart_ctl_block 0x10002fb4 Data 12 xc_drv_uart.o(.bss) + rf433_frame 0x10002fc0 Data 12 rf433.o(.bss) + r_data 0x10002fcc Data 256 fmc_spi_1.o(.bss) + app_data 0x100030cc Data 256 fmc_spi_1.o(.bss) + op_flash 0x100031cc Data 272 ota_flash_interface.o(.bss) + __libspace_start 0x10003840 Data 96 libspace.o(.bss) + __temporary_stack_top$libspace 0x100038a0 Data 0 libspace.o(.bss) _gatt_srv_att_read_get_cfm 0x11002d53 Thumb Code 0 rom_symdefs.o ABSOLUTE _gatt_srv_att_val_set_cfm 0x11002dc7 Thumb Code 0 rom_symdefs.o ABSOLUTE co_rand_word 0x11004109 Thumb Code 0 rom_symdefs.o ABSOLUTE @@ -2770,147 +2862,150 @@ Image Symbol Table UART1_Handler 0x11014067 Thumb Code 10 xc_drv_uart.o(i.UART1_Handler) UART2_Handler 0x11014071 Thumb Code 10 xc_drv_uart.o(i.UART2_Handler) WDT_Handler 0x1101407d Thumb Code 14 xc_drv_wdt.o(i.WDT_Handler) - _433_fun 0x110140e9 Thumb Code 168 rf433.o(i._433_fun) - __ARM_common_ll_muluu 0x11014195 Thumb Code 48 btod.o(i.__ARM_common_ll_muluu) - __ARM_common_switch8 0x110141c5 Thumb Code 26 arch_main.o(i.__ARM_common_switch8) - __ARM_fpclassify 0x110141e1 Thumb Code 40 fpclassify.o(i.__ARM_fpclassify) - _is_digit 0x1101420d Thumb Code 14 __printf_wp.o(i._is_digit) - _sys_exit 0x1101421b Thumb Code 2 system_xinc.o(i._sys_exit) - adc_intr_callback 0x1101421d Thumb Code 108 xc_drv_adc.o(i.adc_intr_callback) - app_create_advertising 0x110142a9 Thumb Code 66 app_task.o(i.app_create_advertising) - app_delete_advertising 0x110142f1 Thumb Code 32 app_task.o(i.app_delete_advertising) - app_get_dev_name 0x1101432d Thumb Code 34 app_task.o(i.app_get_dev_name) - app_init 0x11014355 Thumb Code 50 app_task.o(i.app_init) - app_key_callback_handler 0x11014399 Thumb Code 56 rf433.o(i.app_key_callback_handler) - app_key_init 0x11014441 Thumb Code 38 key.o(i.app_key_init) - app_key_scan 0x11014471 Thumb Code 78 key.o(i.app_key_scan) - app_op_flash 0x11014535 Thumb Code 42 ota_flash_interface.o(i.app_op_flash) - app_op_flash_on 0x11014571 Thumb Code 20 ota_flash_interface.o(i.app_op_flash_on) - app_set_adv_data 0x1101458d Thumb Code 76 app_task.o(i.app_set_adv_data) - app_start_advertising 0x110145f5 Thumb Code 54 app_task.o(i.app_start_advertising) - app_uart_init 0x11014631 Thumb Code 82 arch_main.o(i.app_uart_init) - ble_callback 0x11014689 Thumb Code 20 uart_1.o(i.ble_callback) - ble_flash_handle 0x110146a1 Thumb Code 128 ota_flash_interface.o(i.ble_flash_handle) - ble_flash_later_page_erase 0x11014759 Thumb Code 24 ota_flash_interface.o(i.ble_flash_later_page_erase) - ble_flash_later_write_page 0x11014775 Thumb Code 40 ota_flash_interface.o(i.ble_flash_later_write_page) - ble_message_process 0x110147a1 Thumb Code 44 uart_1.o(i.ble_message_process) - ble_mode_scan 0x110147d1 Thumb Code 60 rf433.o(i.ble_mode_scan) - bluetooth_init 0x11014819 Thumb Code 88 arch_main.o(i.bluetooth_init) - board_init 0x11014885 Thumb Code 66 arch_main.o(i.board_init) - chx_gpio_init 0x11014915 Thumb Code 84 rf433.o(i.chx_gpio_init) - clock_init 0x1101496d Thumb Code 94 sleep.o(i.clock_init) - custom_svc_add 0x110149dd Thumb Code 98 usr_server.o(i.custom_svc_add) - custom_svc_cb_att_read_get 0x11014ab9 Thumb Code 90 usr_server.o(i.custom_svc_cb_att_read_get) - custom_svc_cb_att_val_set 0x11014b69 Thumb Code 224 usr_server.o(i.custom_svc_cb_att_val_set) - custom_svc_cb_event_sent 0x11014d11 Thumb Code 20 usr_server.o(i.custom_svc_cb_event_sent) - delay_us 0x11014d5d Thumb Code 44 xc_drv_systick.o(i.delay_us) - extract32_16 0x11014d8d Thumb Code 14 xc_drv_fmc_spi.o(i.extract32_16) - ferror 0x11014d9b Thumb Code 6 system_xinc.o(i.ferror) - flash_init 0x11014da1 Thumb Code 170 arch_main.o(i.flash_init) - flash_run 0x11014f05 Thumb Code 14 rf433.o(i.flash_run) - flash_size_and_type_get 0x11014f13 Thumb Code 86 xc_drv_fmc_spi.o(i.flash_size_and_type_get) - fmc_spi_read 0x11014f69 Thumb Code 38 fmc_spi_1.o(i.fmc_spi_read) - get_app_env 0x11015ba1 Thumb Code 4 app_task.o(i.get_app_env) - get_fota_env_addr 0x11015bf5 Thumb Code 16 nvds.o(i.get_fota_env_addr) - gpio_intr_callback 0x11015c09 Thumb Code 52 switch_s.o(i.gpio_intr_callback) - gpio_key_check 0x11015c41 Thumb Code 20 key.o(i.gpio_key_check) - led_gpio_init 0x11015c69 Thumb Code 54 led.o(i.led_gpio_init) - main 0x11015ca5 Thumb Code 72 arch_main.o(i.main) - nvds_browse_tag 0x11015cf9 Thumb Code 52 nvds.o(i.nvds_browse_tag) - nvds_del 0x11015d2d Thumb Code 52 nvds.o(i.nvds_del) - nvds_erase 0x11015d65 Thumb Code 76 nvds.o(i.nvds_erase) - nvds_get 0x11015de5 Thumb Code 62 nvds.o(i.nvds_get) - nvds_init 0x11015e29 Thumb Code 48 nvds.o(i.nvds_init) - nvds_init_memory 0x11015e6d Thumb Code 24 nvds.o(i.nvds_init_memory) - nvds_is_magic_number_ok 0x11015e8d Thumb Code 36 nvds.o(i.nvds_is_magic_number_ok) - nvds_purge 0x11015eb9 Thumb Code 98 nvds.o(i.nvds_purge) - nvds_put 0x11015f21 Thumb Code 202 nvds.o(i.nvds_put) - nvds_read 0x11015ff5 Thumb Code 36 nvds.o(i.nvds_read) - nvds_space_init 0x1101601d Thumb Code 70 nvds.o(i.nvds_space_init) - nvds_walk_tag 0x110160a1 Thumb Code 52 nvds.o(i.nvds_walk_tag) - nvds_write 0x110160d9 Thumb Code 36 nvds.o(i.nvds_write) - ota_slave_send_data 0x11016101 Thumb Code 82 ota_server.o(i.ota_slave_send_data) - ota_srv_get_hdl_from_att_idx 0x1101619d Thumb Code 10 ota_server.o(i.ota_srv_get_hdl_from_att_idx) - ota_write_flash 0x110161ad Thumb Code 46 ota_protocol.o(i.ota_write_flash) - pwm3_toggle 0x110161e9 Thumb Code 42 led.o(i.pwm3_toggle) - pwm_capture_ch0_callback 0x1101621d Thumb Code 4 xc_drv_pwm.o(i.pwm_capture_ch0_callback) - pwm_capture_ch1_callback 0x11016221 Thumb Code 4 xc_drv_pwm.o(i.pwm_capture_ch1_callback) - pwm_capture_ch2_callback 0x11016225 Thumb Code 4 xc_drv_pwm.o(i.pwm_capture_ch2_callback) - pwm_pin_set 0x11016305 Thumb Code 192 xc_drv_pwm.o(i.pwm_pin_set) - read_user_data 0x110163c5 Thumb Code 104 fmc_spi_1.o(i.read_user_data) - reverse_verif_is_true 0x11016449 Thumb Code 14 xc_drv_fmc_spi.o(i.reverse_verif_is_true) - rf433_gpio_init 0x11016457 Thumb Code 30 rf433.o(i.rf433_gpio_init) - rf433_receive 0x11016475 Thumb Code 242 rf433.o(i.rf433_receive) - rom_env_host_init 0x1101656d Thumb Code 24 arch_main.o(i.rom_env_host_init) - scan_433 0x11016595 Thumb Code 400 rf433.o(i.scan_433) - scan_uart 0x11016731 Thumb Code 132 uart_1.o(i.scan_uart) - set_TaskComps_timer 0x110167c1 Thumb Code 10 timeslice.o(i.set_TaskComps_timer) - set_single_addr_name 0x110167d1 Thumb Code 118 arch_main.o(i.set_single_addr_name) - set_vector 0x1101686d Thumb Code 46 system_xinc.o(i.set_vector) - slave_send_data 0x110168a9 Thumb Code 82 usr_server.o(i.slave_send_data) - srv_get_hdl_from_att_idx 0x11016945 Thumb Code 10 usr_server.o(i.srv_get_hdl_from_att_idx) - switch_init 0x11016955 Thumb Code 102 switch_s.o(i.switch_init) - systick_callback 0x110169c5 Thumb Code 2 xc_drv_systick.o(i.systick_callback) - timer0_2_init 0x110169c9 Thumb Code 124 timer.o(i.timer0_2_init) - timer3_callback 0x11016a51 Thumb Code 2 xc_drv_timer.o(i.timer3_callback) - trigger_check_process 0x11016a55 Thumb Code 610 switch_s.o(i.trigger_check_process) - uart_user_handler 0x11016cc5 Thumb Code 138 xc_drv_uart.o(i.uart_user_handler) - updateTimer 0x11016d75 Thumb Code 22 timer.o(i.updateTimer) - wdt_init 0x11016d8b Thumb Code 26 arch_main.o(i.wdt_init) - wright_user_data 0x11016da5 Thumb Code 108 fmc_spi_1.o(i.wright_user_data) - xc_adc_data_average 0x11016e2d Thumb Code 120 xc_drv_adc.o(i.xc_adc_data_average) - xc_ble_activity_delete 0x11016ea9 Thumb Code 36 xc_gap_api.o(i.xc_ble_activity_delete) - xc_bor_init 0x11016ed1 Thumb Code 40 xc_drv_bor.o(i.xc_bor_init) - xc_clock_bbpll_common_cfg 0x11016f01 Thumb Code 50 xc_drv_clock.o(i.xc_clock_bbpll_common_cfg) - xc_clock_bbpll_freq_cfg 0x11016f41 Thumb Code 224 xc_drv_clock.o(i.xc_clock_bbpll_freq_cfg) - xc_clock_hfclk_in_get 0x1101702d Thumb Code 6 xc_drv_clock.o(i.xc_clock_hfclk_in_get) - xc_clock_hfclk_set 0x11017039 Thumb Code 192 xc_drv_clock.o(i.xc_clock_hfclk_set) - xc_clock_init_cfg 0x11017115 Thumb Code 22 xc_drv_clock.o(i.xc_clock_init_cfg) - xc_clock_lfclk_in_get 0x1101712d Thumb Code 6 xc_drv_clock.o(i.xc_clock_lfclk_in_get) - xc_clock_lfclk_set 0x11017139 Thumb Code 96 xc_drv_clock.o(i.xc_clock_lfclk_set) - xc_fota_dev_ack_cmd 0x110171a5 Thumb Code 36 ota_protocol.o(i.xc_fota_dev_ack_cmd) - xc_gpio_direction_config 0x110171cd Thumb Code 24 xc_drv_gpio.o(i.xc_gpio_direction_config) - xc_gpio_fun_sel 0x110171e9 Thumb Code 36 xc_drv_gpio.o(i.xc_gpio_fun_sel) - xc_gpio_init 0x11017211 Thumb Code 46 xc_drv_gpio.o(i.xc_gpio_init) - xc_gpio_it_config 0x11017241 Thumb Code 46 xc_drv_gpio.o(i.xc_gpio_it_config) - xc_gpio_mux_ctl 0x11017275 Thumb Code 70 xc_drv_gpio.o(i.xc_gpio_mux_ctl) - xc_gpio_pull_config 0x110172c1 Thumb Code 228 xc_drv_gpio.o(i.xc_gpio_pull_config) - xc_gpio_read_pin 0x110173a9 Thumb Code 30 xc_drv_gpio.o(i.xc_gpio_read_pin) - xc_gpio_toggle_pin 0x110173cd Thumb Code 36 xc_drv_gpio.o(i.xc_gpio_toggle_pin) - xc_gpio_write_pin 0x110173f9 Thumb Code 24 xc_drv_gpio.o(i.xc_gpio_write_pin) - xc_hfclk_set 0x11017415 Thumb Code 58 xc_drv_clock.o(i.xc_hfclk_set) - xc_ota_schedule 0x11017455 Thumb Code 68 ota_protocol.o(i.xc_ota_schedule) - xc_pwm_dutycycle_set 0x110174b9 Thumb Code 104 xc_drv_pwm.o(i.xc_pwm_dutycycle_set) - xc_pwm_init 0x11017529 Thumb Code 208 xc_drv_pwm.o(i.xc_pwm_init) - xc_pwm_start_all 0x11017609 Thumb Code 20 xc_drv_pwm.o(i.xc_pwm_start_all) - xc_pwr_vol_set 0x11017625 Thumb Code 70 xc_drv_pwr.o(i.xc_pwr_vol_set) - xc_rc32k_soft_calib_set 0x11017681 Thumb Code 204 xc_drv_calib.o(i.xc_rc32k_soft_calib_set) - xc_system_param_check 0x11017779 Thumb Code 230 xc_drv_clock.o(i.xc_system_param_check) - xc_systick_unit_get 0x11017995 Thumb Code 6 xc_drv_clock.o(i.xc_systick_unit_get) - xc_timer_init 0x110179a1 Thumb Code 274 xc_drv_timer.o(i.xc_timer_init) - xc_timer_set_value 0x11017ac1 Thumb Code 32 xc_drv_timer.o(i.xc_timer_set_value) - xc_timer_start 0x11017ae9 Thumb Code 48 xc_drv_timer.o(i.xc_timer_start) - xc_uart_init 0x11017c19 Thumb Code 476 xc_drv_uart.o(i.xc_uart_init) - xc_unique_identification_read 0x11017e09 Thumb Code 228 xc_drv_fmc_spi.o(i.xc_unique_identification_read) - xc_wdt_init 0x11017ef1 Thumb Code 94 xc_drv_wdt.o(i.xc_wdt_init) - xc_wdt_refresh 0x11017f59 Thumb Code 56 xc_drv_wdt.o(i.xc_wdt_refresh) - xc_wdt_reload 0x11017f99 Thumb Code 60 xc_drv_wdt.o(i.xc_wdt_reload) - xc_wdt_start 0x11017fdd Thumb Code 44 xc_drv_wdt.o(i.xc_wdt_start) - _get_lc_numeric 0x11018011 Thumb Code 44 lc_numeric_c.o(locale$$code) - _get_lc_ctype 0x1101803d Thumb Code 44 lc_ctype_c.o(locale$$code) - __aeabi_fmul 0x11018069 Thumb Code 0 fmul.o(x$fpl$fmul) - _fmul 0x11018069 Thumb Code 172 fmul.o(x$fpl$fmul) - _printf_fp_dec 0x11018119 Thumb Code 16 printf1.o(x$fpl$printf1) - _printf_fp_hex 0x11018129 Thumb Code 16 printf2.o(x$fpl$printf2) - __I$use$fp 0x11018138 Number 0 usenofp.o(x$fpl$usenofp) - app_msg_handler_tab 0x11018138 Data 8 app_task.o(.constdata) - TASK_DESC_APP 0x11018140 Data 12 app_task.o(.constdata) - app_sec_msg_handler_list 0x1101817c Data 40 app_sec.o(.constdata) - app_sec_handlers 0x110181a4 Data 8 app_sec.o(.constdata) - nvds_magic_number 0x11018232 Data 4 nvds.o(.constdata) - Region$$Table$$Base 0x1101853c Number 0 anon$$obj.o(Region$$Table) - Region$$Table$$Limit 0x1101858c Number 0 anon$$obj.o(Region$$Table) - __ctype 0x110185b5 Data 0 lc_ctype_c.o(locale$$data) + _433_fun 0x110140e9 Thumb Code 126 rf433.o(i._433_fun) + __ARM_common_ll_muluu 0x1101416d Thumb Code 48 btod.o(i.__ARM_common_ll_muluu) + __ARM_common_switch8 0x1101419d Thumb Code 26 arch_main.o(i.__ARM_common_switch8) + __ARM_fpclassify 0x110141b9 Thumb Code 40 fpclassify.o(i.__ARM_fpclassify) + _is_digit 0x110141e5 Thumb Code 14 __printf_wp.o(i._is_digit) + _sys_exit 0x110141f3 Thumb Code 2 system_xinc.o(i._sys_exit) + adc_intr_callback 0x110141f5 Thumb Code 108 xc_drv_adc.o(i.adc_intr_callback) + app_create_advertising 0x11014281 Thumb Code 66 app_task.o(i.app_create_advertising) + app_delete_advertising 0x110142c9 Thumb Code 32 app_task.o(i.app_delete_advertising) + app_get_dev_name 0x11014305 Thumb Code 34 app_task.o(i.app_get_dev_name) + app_init 0x1101432d Thumb Code 50 app_task.o(i.app_init) + app_key_callback_handler 0x11014371 Thumb Code 56 rf433.o(i.app_key_callback_handler) + app_key_init 0x11014419 Thumb Code 38 key.o(i.app_key_init) + app_key_scan 0x11014449 Thumb Code 78 key.o(i.app_key_scan) + app_op_flash 0x1101450d Thumb Code 42 ota_flash_interface.o(i.app_op_flash) + app_op_flash_on 0x11014549 Thumb Code 20 ota_flash_interface.o(i.app_op_flash_on) + app_set_adv_data 0x11014565 Thumb Code 76 app_task.o(i.app_set_adv_data) + app_start_advertising 0x110145cd Thumb Code 54 app_task.o(i.app_start_advertising) + app_uart_init 0x11014609 Thumb Code 82 arch_main.o(i.app_uart_init) + ble_callback 0x11014661 Thumb Code 20 uart_1.o(i.ble_callback) + ble_flash_handle 0x11014679 Thumb Code 128 ota_flash_interface.o(i.ble_flash_handle) + ble_flash_later_page_erase 0x11014731 Thumb Code 24 ota_flash_interface.o(i.ble_flash_later_page_erase) + ble_flash_later_write_page 0x1101474d Thumb Code 40 ota_flash_interface.o(i.ble_flash_later_write_page) + ble_message_process 0x11014779 Thumb Code 44 uart_1.o(i.ble_message_process) + ble_mode_scan 0x110147a9 Thumb Code 60 rf433.o(i.ble_mode_scan) + bluetooth_init 0x110147f1 Thumb Code 88 arch_main.o(i.bluetooth_init) + board_init 0x1101485d Thumb Code 70 arch_main.o(i.board_init) + chx_gpio_init 0x110148f1 Thumb Code 84 rf433.o(i.chx_gpio_init) + clock_init 0x11014949 Thumb Code 94 sleep.o(i.clock_init) + custom_svc_add 0x110149b9 Thumb Code 98 usr_server.o(i.custom_svc_add) + custom_svc_cb_att_read_get 0x11014a95 Thumb Code 90 usr_server.o(i.custom_svc_cb_att_read_get) + custom_svc_cb_att_val_set 0x11014b45 Thumb Code 224 usr_server.o(i.custom_svc_cb_att_val_set) + custom_svc_cb_event_sent 0x11014ced Thumb Code 20 usr_server.o(i.custom_svc_cb_event_sent) + delay_us 0x11014d39 Thumb Code 44 xc_drv_systick.o(i.delay_us) + extract32_16 0x11014d69 Thumb Code 14 xc_drv_fmc_spi.o(i.extract32_16) + ferror 0x11014d77 Thumb Code 6 system_xinc.o(i.ferror) + flash_init 0x11014d7d Thumb Code 170 arch_main.o(i.flash_init) + flash_run 0x11014ee1 Thumb Code 14 rf433.o(i.flash_run) + flash_size_and_type_get 0x11014eef Thumb Code 86 xc_drv_fmc_spi.o(i.flash_size_and_type_get) + fmc_spi_read 0x11014f45 Thumb Code 38 fmc_spi_1.o(i.fmc_spi_read) + get_app_env 0x11015b7d Thumb Code 4 app_task.o(i.get_app_env) + get_fota_env_addr 0x11015bd1 Thumb Code 16 nvds.o(i.get_fota_env_addr) + gpio_intr_callback 0x11015be5 Thumb Code 52 switch_s.o(i.gpio_intr_callback) + gpio_key_check 0x11015c1d Thumb Code 20 key.o(i.gpio_key_check) + led_gpio_init 0x11015c45 Thumb Code 54 led.o(i.led_gpio_init) + main 0x11015c81 Thumb Code 72 arch_main.o(i.main) + nvds_browse_tag 0x11015cd5 Thumb Code 52 nvds.o(i.nvds_browse_tag) + nvds_del 0x11015d09 Thumb Code 52 nvds.o(i.nvds_del) + nvds_erase 0x11015d41 Thumb Code 76 nvds.o(i.nvds_erase) + nvds_get 0x11015dc1 Thumb Code 62 nvds.o(i.nvds_get) + nvds_init 0x11015e05 Thumb Code 48 nvds.o(i.nvds_init) + nvds_init_memory 0x11015e49 Thumb Code 24 nvds.o(i.nvds_init_memory) + nvds_is_magic_number_ok 0x11015e69 Thumb Code 36 nvds.o(i.nvds_is_magic_number_ok) + nvds_purge 0x11015e95 Thumb Code 98 nvds.o(i.nvds_purge) + nvds_put 0x11015efd Thumb Code 202 nvds.o(i.nvds_put) + nvds_read 0x11015fd1 Thumb Code 36 nvds.o(i.nvds_read) + nvds_space_init 0x11015ff9 Thumb Code 70 nvds.o(i.nvds_space_init) + nvds_walk_tag 0x1101607d Thumb Code 52 nvds.o(i.nvds_walk_tag) + nvds_write 0x110160b5 Thumb Code 36 nvds.o(i.nvds_write) + ota_slave_send_data 0x110160dd Thumb Code 82 ota_server.o(i.ota_slave_send_data) + ota_srv_get_hdl_from_att_idx 0x11016179 Thumb Code 10 ota_server.o(i.ota_srv_get_hdl_from_att_idx) + ota_write_flash 0x11016189 Thumb Code 46 ota_protocol.o(i.ota_write_flash) + pwm3_toggle 0x110161c5 Thumb Code 42 led.o(i.pwm3_toggle) + pwm_capture_ch0_callback 0x110161f9 Thumb Code 4 xc_drv_pwm.o(i.pwm_capture_ch0_callback) + pwm_capture_ch1_callback 0x110161fd Thumb Code 4 xc_drv_pwm.o(i.pwm_capture_ch1_callback) + pwm_capture_ch2_callback 0x11016201 Thumb Code 4 xc_drv_pwm.o(i.pwm_capture_ch2_callback) + pwm_pin_set 0x110162e1 Thumb Code 192 xc_drv_pwm.o(i.pwm_pin_set) + read_user_data 0x110163a1 Thumb Code 104 fmc_spi_1.o(i.read_user_data) + reverse_verif_is_true 0x11016425 Thumb Code 14 xc_drv_fmc_spi.o(i.reverse_verif_is_true) + rf433_decoder_get_frame 0x11016465 Thumb Code 32 rf433_decoder.o(i.rf433_decoder_get_frame) + rf433_decoder_init 0x11016489 Thumb Code 48 rf433_decoder.o(i.rf433_decoder_init) + rf433_decoder_process 0x110164bd Thumb Code 56 rf433_decoder.o(i.rf433_decoder_process) + rf433_decoder_sample 0x110164fd Thumb Code 104 rf433_decoder.o(i.rf433_decoder_sample) + rf433_gpio_init 0x11016571 Thumb Code 30 rf433.o(i.rf433_gpio_init) + rom_env_host_init 0x110169c1 Thumb Code 24 arch_main.o(i.rom_env_host_init) + scan_433 0x110169e9 Thumb Code 416 rf433.o(i.scan_433) + scan_uart 0x11016b99 Thumb Code 132 uart_1.o(i.scan_uart) + set_TaskComps_timer 0x11016c29 Thumb Code 10 timeslice.o(i.set_TaskComps_timer) + set_single_addr_name 0x11016c39 Thumb Code 118 arch_main.o(i.set_single_addr_name) + set_vector 0x11016cd5 Thumb Code 46 system_xinc.o(i.set_vector) + slave_send_data 0x11016d11 Thumb Code 82 usr_server.o(i.slave_send_data) + srv_get_hdl_from_att_idx 0x11016dad Thumb Code 10 usr_server.o(i.srv_get_hdl_from_att_idx) + switch_init 0x11016dbd Thumb Code 102 switch_s.o(i.switch_init) + systick_callback 0x11016e2d Thumb Code 2 xc_drv_systick.o(i.systick_callback) + timer0_2_init 0x11016e31 Thumb Code 124 timer.o(i.timer0_2_init) + timer3_callback 0x11016eb9 Thumb Code 2 xc_drv_timer.o(i.timer3_callback) + trigger_check_process 0x11016ebd Thumb Code 610 switch_s.o(i.trigger_check_process) + uart_user_handler 0x1101712d Thumb Code 138 xc_drv_uart.o(i.uart_user_handler) + updateTimer 0x110171dd Thumb Code 22 timer.o(i.updateTimer) + wdt_init 0x110171f3 Thumb Code 26 arch_main.o(i.wdt_init) + wright_user_data 0x1101720d Thumb Code 108 fmc_spi_1.o(i.wright_user_data) + xc_adc_data_average 0x11017295 Thumb Code 120 xc_drv_adc.o(i.xc_adc_data_average) + xc_ble_activity_delete 0x11017311 Thumb Code 36 xc_gap_api.o(i.xc_ble_activity_delete) + xc_bor_init 0x11017339 Thumb Code 40 xc_drv_bor.o(i.xc_bor_init) + xc_clock_bbpll_common_cfg 0x11017369 Thumb Code 50 xc_drv_clock.o(i.xc_clock_bbpll_common_cfg) + xc_clock_bbpll_freq_cfg 0x110173a9 Thumb Code 224 xc_drv_clock.o(i.xc_clock_bbpll_freq_cfg) + xc_clock_hfclk_in_get 0x11017495 Thumb Code 6 xc_drv_clock.o(i.xc_clock_hfclk_in_get) + xc_clock_hfclk_set 0x110174a1 Thumb Code 192 xc_drv_clock.o(i.xc_clock_hfclk_set) + xc_clock_init_cfg 0x1101757d Thumb Code 22 xc_drv_clock.o(i.xc_clock_init_cfg) + xc_clock_lfclk_in_get 0x11017595 Thumb Code 6 xc_drv_clock.o(i.xc_clock_lfclk_in_get) + xc_clock_lfclk_set 0x110175a1 Thumb Code 96 xc_drv_clock.o(i.xc_clock_lfclk_set) + xc_fota_dev_ack_cmd 0x1101760d Thumb Code 36 ota_protocol.o(i.xc_fota_dev_ack_cmd) + xc_gpio_direction_config 0x11017635 Thumb Code 24 xc_drv_gpio.o(i.xc_gpio_direction_config) + xc_gpio_fun_sel 0x11017651 Thumb Code 36 xc_drv_gpio.o(i.xc_gpio_fun_sel) + xc_gpio_init 0x11017679 Thumb Code 46 xc_drv_gpio.o(i.xc_gpio_init) + xc_gpio_it_config 0x110176a9 Thumb Code 46 xc_drv_gpio.o(i.xc_gpio_it_config) + xc_gpio_mux_ctl 0x110176dd Thumb Code 70 xc_drv_gpio.o(i.xc_gpio_mux_ctl) + xc_gpio_pull_config 0x11017729 Thumb Code 228 xc_drv_gpio.o(i.xc_gpio_pull_config) + xc_gpio_read_pin 0x11017811 Thumb Code 30 xc_drv_gpio.o(i.xc_gpio_read_pin) + xc_gpio_toggle_pin 0x11017835 Thumb Code 36 xc_drv_gpio.o(i.xc_gpio_toggle_pin) + xc_gpio_write_pin 0x11017861 Thumb Code 24 xc_drv_gpio.o(i.xc_gpio_write_pin) + xc_hfclk_set 0x1101787d Thumb Code 58 xc_drv_clock.o(i.xc_hfclk_set) + xc_ota_schedule 0x110178bd Thumb Code 68 ota_protocol.o(i.xc_ota_schedule) + xc_pwm_dutycycle_set 0x11017921 Thumb Code 104 xc_drv_pwm.o(i.xc_pwm_dutycycle_set) + xc_pwm_init 0x11017991 Thumb Code 208 xc_drv_pwm.o(i.xc_pwm_init) + xc_pwm_start_all 0x11017a71 Thumb Code 20 xc_drv_pwm.o(i.xc_pwm_start_all) + xc_pwr_vol_set 0x11017a8d Thumb Code 70 xc_drv_pwr.o(i.xc_pwr_vol_set) + xc_rc32k_soft_calib_set 0x11017ae9 Thumb Code 204 xc_drv_calib.o(i.xc_rc32k_soft_calib_set) + xc_system_param_check 0x11017be1 Thumb Code 230 xc_drv_clock.o(i.xc_system_param_check) + xc_systick_unit_get 0x11017dfd Thumb Code 6 xc_drv_clock.o(i.xc_systick_unit_get) + xc_timer_init 0x11017e09 Thumb Code 274 xc_drv_timer.o(i.xc_timer_init) + xc_timer_set_value 0x11017f29 Thumb Code 32 xc_drv_timer.o(i.xc_timer_set_value) + xc_timer_start 0x11017f51 Thumb Code 48 xc_drv_timer.o(i.xc_timer_start) + xc_uart_init 0x11018081 Thumb Code 476 xc_drv_uart.o(i.xc_uart_init) + xc_unique_identification_read 0x11018271 Thumb Code 228 xc_drv_fmc_spi.o(i.xc_unique_identification_read) + xc_wdt_init 0x11018359 Thumb Code 94 xc_drv_wdt.o(i.xc_wdt_init) + xc_wdt_refresh 0x110183c1 Thumb Code 56 xc_drv_wdt.o(i.xc_wdt_refresh) + xc_wdt_reload 0x11018401 Thumb Code 60 xc_drv_wdt.o(i.xc_wdt_reload) + xc_wdt_start 0x11018445 Thumb Code 44 xc_drv_wdt.o(i.xc_wdt_start) + _get_lc_numeric 0x11018479 Thumb Code 44 lc_numeric_c.o(locale$$code) + _get_lc_ctype 0x110184a5 Thumb Code 44 lc_ctype_c.o(locale$$code) + __aeabi_fmul 0x110184d1 Thumb Code 0 fmul.o(x$fpl$fmul) + _fmul 0x110184d1 Thumb Code 172 fmul.o(x$fpl$fmul) + _printf_fp_dec 0x11018581 Thumb Code 16 printf1.o(x$fpl$printf1) + _printf_fp_hex 0x11018591 Thumb Code 16 printf2.o(x$fpl$printf2) + __I$use$fp 0x110185a0 Number 0 usenofp.o(x$fpl$usenofp) + app_msg_handler_tab 0x110185a0 Data 8 app_task.o(.constdata) + TASK_DESC_APP 0x110185a8 Data 12 app_task.o(.constdata) + app_sec_msg_handler_list 0x110185e4 Data 40 app_sec.o(.constdata) + app_sec_handlers 0x1101860c Data 8 app_sec.o(.constdata) + nvds_magic_number 0x1101869a Data 4 nvds.o(.constdata) + Region$$Table$$Base 0x11018a5c Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x11018aac Number 0 anon$$obj.o(Region$$Table) + __ctype 0x11018ad5 Data 0 lc_ctype_c.o(locale$$data) write_buffer 0x53006c00 Data 512 nvds.o(ram_em) fota_env 0x53006e00 Data 2091 ota_protocol.o(ram_em) @@ -2922,440 +3017,459 @@ Memory Map of the image Image Entry point : 0x110120c1 - Load Region LOAD (Base: 0x11012000, Size: 0x00007cf0, Max: 0xffffffff, ABSOLUTE, COMPRESSED[0x000071a8]) + Load Region LOAD (Base: 0x11012000, Size: 0x00008234, Max: 0xffffffff, ABSOLUTE, COMPRESSED[0x000076e0]) - Execution Region RW1 (Exec base: 0x10000100, Load base: 0x110186b8, Size: 0x000006f0, Max: 0xffffffff, ABSOLUTE) + Execution Region RW1 (Exec base: 0x10000100, Load base: 0x11018bd8, Size: 0x000006f0, Max: 0xffffffff, ABSOLUTE) Exec Addr Load Addr Size Type Attr Idx E Section Name Object 0x10000100 - 0x000006f0 Zero RW 1 STACK startup_xinc.o - Execution Region RW (Exec base: 0x10002300, Load base: 0x110186b8, Size: 0x00001120, Max: 0xffffffff, ABSOLUTE, COMPRESSED[0x00000060]) + Execution Region RW (Exec base: 0x10002300, Load base: 0x11018bd8, Size: 0x000015a0, Max: 0xffffffff, ABSOLUTE, COMPRESSED[0x00000064]) Exec Addr Load Addr Size Type Attr Idx E Section Name Object - 0x10002300 0x110186b8 0x00000040 Code RO 4673 .text c_p.l(rt_memclr.o) - 0x10002340 0x110186f8 0x0000015a Code RO 4679 .text c_p.l(aeabi_sdiv.o) + 0x10002300 0x11018bd8 0x00000040 Code RO 4778 .text c_p.l(rt_memclr.o) + 0x10002340 0x11018c18 0x0000015a Code RO 4784 .text c_p.l(aeabi_sdiv.o) 0x1000249a COMPRESSED 0x00000002 PAD - 0x1000249c 0x11018854 0x0000000c Ven RO 5003 Veneer$$Code anon$$obj.o - 0x100024a8 0x11018860 0x0000000c Ven RO 5004 Veneer$$Code anon$$obj.o - 0x100024b4 0x1101886c 0x0000000c Ven RO 5005 Veneer$$Code anon$$obj.o - 0x100024c0 0x11018878 0x0000000c Ven RO 5006 Veneer$$Code anon$$obj.o - 0x100024cc 0x11018884 0x0000000c Ven RO 5007 Veneer$$Code anon$$obj.o - 0x100024d8 0x11018890 0x0000000c Ven RO 5008 Veneer$$Code anon$$obj.o - 0x100024e4 0x1101889c 0x0000000c Ven RO 5009 Veneer$$Code anon$$obj.o - 0x100024f0 0x110188a8 0x0000000c Ven RO 5010 Veneer$$Code anon$$obj.o - 0x100024fc 0x110188b4 0x0000000c Ven RO 5011 Veneer$$Code anon$$obj.o - 0x10002508 0x110188c0 0x00000018 Code RO 17 ram_code system_xinc.o - 0x10002520 0x110188d8 0x0000003c Code RO 687 ram_code arch_main.o - 0x1000255c 0x11018914 0x000000b8 Code RO 1594 ram_code xc_drv_bor.o - 0x10002614 0x110189cc 0x000005c8 Code RO 2136 ram_code xc_drv_fmc_spi.o - 0x10002bdc 0x11018f94 0x0000002c Code RO 3259 ram_code xc_drv_rtc.o - 0x10002c08 0x11018fc0 0x000000a8 Code RO 4017 ram_code timer.o - 0x10002cb0 0x11019068 0x000000c8 Code RO 4294 ram_code key.o - 0x10002d78 COMPRESSED 0x00000004 Data RW 18 .data system_xinc.o - 0x10002d7c COMPRESSED 0x00000034 Data RW 554 .data app_task.o - 0x10002db0 COMPRESSED 0x00000001 Data RW 555 .data app_task.o - 0x10002db1 COMPRESSED 0x00000002 Data RW 812 .data app_sec.o - 0x10002db3 COMPRESSED 0x00000001 PAD - 0x10002db4 COMPRESSED 0x00000004 Data RW 937 .data usr_server.o - 0x10002db8 COMPRESSED 0x00000004 Data RW 1039 .data nvds.o - 0x10002dbc COMPRESSED 0x00000002 Data RW 1353 .data xc_drv_adc.o - 0x10002dbe COMPRESSED 0x00000002 PAD - 0x10002dc0 COMPRESSED 0x00000004 Data RW 1683 .data xc_drv_calib.o - 0x10002dc4 COMPRESSED 0x00000004 PAD - 0x10002dc8 COMPRESSED 0x00000010 Data RW 2501 .data xc_drv_pwm.o - 0x10002dd8 COMPRESSED 0x00000010 Data RW 3544 .data xc_drv_timer.o - 0x10002de8 COMPRESSED 0x00000018 Data RW 4018 .data timer.o - 0x10002e00 COMPRESSED 0x00000080 Data RW 4058 .data timeslice.o - 0x10002e80 COMPRESSED 0x0000000c Data RW 4103 .data uart_1.o - 0x10002e8c COMPRESSED 0x00000038 Data RW 4146 .data rf433.o - 0x10002ec4 COMPRESSED 0x00000016 Data RW 4209 .data switch_s.o - 0x10002eda COMPRESSED 0x00000002 PAD - 0x10002edc COMPRESSED 0x00000014 Data RW 4295 .data key.o - 0x10002ef0 COMPRESSED 0x00000001 Data RW 4353 .data led.o - 0x10002ef1 COMPRESSED 0x00000001 Data RW 4354 .data led.o - 0x10002ef2 COMPRESSED 0x00000001 Data RW 4391 .data ota_flash_interface.o - 0x10002ef3 COMPRESSED 0x00000001 PAD - 0x10002ef4 COMPRESSED 0x00000011 Data RW 4457 .data ota_protocol.o - 0x10002f05 COMPRESSED 0x00000001 PAD - 0x10002f06 COMPRESSED 0x00000004 Data RW 4554 .data ota_server.o - 0x10002f0a COMPRESSED 0x00000002 PAD - 0x10002f0c - 0x0000001c Zero RW 688 .bss arch_main.o - 0x10002f28 - 0x00000018 Zero RW 1037 .bss nvds.o - 0x10002f40 - 0x00000040 Zero RW 1352 .bss xc_drv_adc.o - 0x10002f80 - 0x00000010 Zero RW 1862 .bss xc_drv_clock.o - 0x10002f90 - 0x0000000c Zero RW 3742 .bss xc_drv_uart.o - 0x10002f9c - 0x00000200 Zero RW 4248 .bss fmc_spi_1.o - 0x1000319c - 0x00000110 Zero RW 4390 .bss ota_flash_interface.o - 0x100032ac - 0x00000114 Zero RW 4454 .bss ota_protocol.o - 0x100033c0 - 0x00000060 Zero RW 4836 .bss c_p.l(libspace.o) - 0x10003420 - 0x00000000 Zero RW 2 HEAP startup_xinc.o + 0x1000249c 0x11018d74 0x0000000c Ven RO 5108 Veneer$$Code anon$$obj.o + 0x100024a8 0x11018d80 0x0000000c Ven RO 5109 Veneer$$Code anon$$obj.o + 0x100024b4 0x11018d8c 0x0000000c Ven RO 5110 Veneer$$Code anon$$obj.o + 0x100024c0 0x11018d98 0x0000000c Ven RO 5111 Veneer$$Code anon$$obj.o + 0x100024cc 0x11018da4 0x0000000c Ven RO 5112 Veneer$$Code anon$$obj.o + 0x100024d8 0x11018db0 0x0000000c Ven RO 5113 Veneer$$Code anon$$obj.o + 0x100024e4 0x11018dbc 0x0000000c Ven RO 5114 Veneer$$Code anon$$obj.o + 0x100024f0 0x11018dc8 0x0000000c Ven RO 5115 Veneer$$Code anon$$obj.o + 0x100024fc 0x11018dd4 0x0000000c Ven RO 5116 Veneer$$Code anon$$obj.o + 0x10002508 0x11018de0 0x0000000c Ven RO 5117 Veneer$$Code anon$$obj.o + 0x10002514 0x11018dec 0x00000018 Code RO 17 ram_code system_xinc.o + 0x1000252c 0x11018e04 0x0000003c Code RO 687 ram_code arch_main.o + 0x10002568 0x11018e40 0x000000b8 Code RO 1597 ram_code xc_drv_bor.o + 0x10002620 0x11018ef8 0x000005c8 Code RO 2139 ram_code xc_drv_fmc_spi.o + 0x10002be8 0x110194c0 0x0000002c Code RO 3262 ram_code xc_drv_rtc.o + 0x10002c14 0x110194ec 0x000000b0 Code RO 4020 ram_code timer.o + 0x10002cc4 0x1101959c 0x000000c8 Code RO 4299 ram_code key.o + 0x10002d8c COMPRESSED 0x00000004 Data RW 18 .data system_xinc.o + 0x10002d90 COMPRESSED 0x00000034 Data RW 554 .data app_task.o + 0x10002dc4 COMPRESSED 0x00000001 Data RW 555 .data app_task.o + 0x10002dc5 COMPRESSED 0x00000002 Data RW 815 .data app_sec.o + 0x10002dc7 COMPRESSED 0x00000001 PAD + 0x10002dc8 COMPRESSED 0x00000004 Data RW 940 .data usr_server.o + 0x10002dcc COMPRESSED 0x00000004 Data RW 1042 .data nvds.o + 0x10002dd0 COMPRESSED 0x00000002 Data RW 1356 .data xc_drv_adc.o + 0x10002dd2 COMPRESSED 0x00000002 PAD + 0x10002dd4 COMPRESSED 0x00000004 Data RW 1686 .data xc_drv_calib.o + 0x10002dd8 COMPRESSED 0x00000010 Data RW 2504 .data xc_drv_pwm.o + 0x10002de8 COMPRESSED 0x00000010 Data RW 3547 .data xc_drv_timer.o + 0x10002df8 COMPRESSED 0x00000018 Data RW 4021 .data timer.o + 0x10002e10 COMPRESSED 0x00000090 Data RW 4061 .data timeslice.o + 0x10002ea0 COMPRESSED 0x0000000c Data RW 4106 .data uart_1.o + 0x10002eac COMPRESSED 0x0000003c Data RW 4150 .data rf433.o + 0x10002ee8 COMPRESSED 0x00000016 Data RW 4214 .data switch_s.o + 0x10002efe COMPRESSED 0x00000002 PAD + 0x10002f00 COMPRESSED 0x00000014 Data RW 4300 .data key.o + 0x10002f14 COMPRESSED 0x00000001 Data RW 4358 .data led.o + 0x10002f15 COMPRESSED 0x00000001 Data RW 4359 .data led.o + 0x10002f16 COMPRESSED 0x00000001 Data RW 4396 .data ota_flash_interface.o + 0x10002f17 COMPRESSED 0x00000001 PAD + 0x10002f18 COMPRESSED 0x00000011 Data RW 4462 .data ota_protocol.o + 0x10002f29 COMPRESSED 0x00000001 PAD + 0x10002f2a COMPRESSED 0x00000004 Data RW 4559 .data ota_server.o + 0x10002f2e COMPRESSED 0x00000002 PAD + 0x10002f30 - 0x0000001c Zero RW 688 .bss arch_main.o + 0x10002f4c - 0x00000018 Zero RW 1040 .bss nvds.o + 0x10002f64 - 0x00000040 Zero RW 1355 .bss xc_drv_adc.o + 0x10002fa4 - 0x00000010 Zero RW 1865 .bss xc_drv_clock.o + 0x10002fb4 - 0x0000000c Zero RW 3745 .bss xc_drv_uart.o + 0x10002fc0 - 0x0000000c Zero RW 4149 .bss rf433.o + 0x10002fcc - 0x00000200 Zero RW 4253 .bss fmc_spi_1.o + 0x100031cc - 0x00000110 Zero RW 4395 .bss ota_flash_interface.o + 0x100032dc - 0x00000114 Zero RW 4459 .bss ota_protocol.o + 0x100033f0 - 0x0000044e Zero RW 4621 .bss rf433_decoder.o + 0x1000383e COMPRESSED 0x00000002 PAD + 0x10003840 - 0x00000060 Zero RW 4941 .bss c_p.l(libspace.o) + 0x100038a0 - 0x00000000 Zero RW 2 HEAP startup_xinc.o - Execution Region EXE (Exec base: 0x11012000, Load base: 0x11012000, Size: 0x000066b8, Max: 0xffffffff, ABSOLUTE) + Execution Region EXE (Exec base: 0x11012000, Load base: 0x11012000, Size: 0x00006bd8, Max: 0xffffffff, ABSOLUTE) Exec Addr Load Addr Size Type Attr Idx E Section Name Object 0x11012000 0x11012000 0x000000c0 Data RO 3 RESET startup_xinc.o - 0x110120c0 0x110120c0 0x00000008 Code RO 4685 * !!!main c_p.l(__main.o) - 0x110120c8 0x110120c8 0x0000003c Code RO 4970 !!!scatter c_p.l(__scatter.o) - 0x11012104 0x11012104 0x0000001a Code RO 4972 !!handler_copy c_p.l(__scatter_copy.o) + 0x110120c0 0x110120c0 0x00000008 Code RO 4790 * !!!main c_p.l(__main.o) + 0x110120c8 0x110120c8 0x0000003c Code RO 5075 !!!scatter c_p.l(__scatter.o) + 0x11012104 0x11012104 0x0000001a Code RO 5077 !!handler_copy c_p.l(__scatter_copy.o) 0x1101211e 0x1101211e 0x00000002 PAD - 0x11012120 0x11012120 0x0000001c Code RO 4974 !!handler_zi c_p.l(__scatter_zi.o) - 0x1101213c 0x1101213c 0x00000002 Code RO 4664 .ARM.Collect$$_printf_percent$$00000000 c_p.l(_printf_percent.o) - 0x1101213e 0x1101213e 0x0000000a Code RO 4735 .ARM.Collect$$_printf_percent$$00000001 c_p.l(_printf_n.o) - 0x11012148 0x11012148 0x0000000a Code RO 4736 .ARM.Collect$$_printf_percent$$00000002 c_p.l(_printf_p.o) - 0x11012152 0x11012152 0x0000000a Code RO 4740 .ARM.Collect$$_printf_percent$$00000003 c_p.l(_printf_f.o) - 0x1101215c 0x1101215c 0x0000000a Code RO 4741 .ARM.Collect$$_printf_percent$$00000004 c_p.l(_printf_e.o) - 0x11012166 0x11012166 0x0000000a Code RO 4742 .ARM.Collect$$_printf_percent$$00000005 c_p.l(_printf_g.o) - 0x11012170 0x11012170 0x0000000a Code RO 4743 .ARM.Collect$$_printf_percent$$00000006 c_p.l(_printf_a.o) - 0x1101217a 0x1101217a 0x0000000a Code RO 4748 .ARM.Collect$$_printf_percent$$00000007 c_p.l(_printf_ll.o) - 0x11012184 0x11012184 0x0000000a Code RO 4738 .ARM.Collect$$_printf_percent$$00000008 c_p.l(_printf_i.o) - 0x1101218e 0x1101218e 0x0000000a Code RO 4663 .ARM.Collect$$_printf_percent$$00000009 c_p.l(_printf_d.o) - 0x11012198 0x11012198 0x0000000a Code RO 4739 .ARM.Collect$$_printf_percent$$0000000A c_p.l(_printf_u.o) - 0x110121a2 0x110121a2 0x0000000a Code RO 4737 .ARM.Collect$$_printf_percent$$0000000B c_p.l(_printf_o.o) - 0x110121ac 0x110121ac 0x0000000a Code RO 4662 .ARM.Collect$$_printf_percent$$0000000C c_p.l(_printf_x.o) - 0x110121b6 0x110121b6 0x0000000a Code RO 4745 .ARM.Collect$$_printf_percent$$0000000D c_p.l(_printf_lli.o) - 0x110121c0 0x110121c0 0x0000000a Code RO 4746 .ARM.Collect$$_printf_percent$$0000000E c_p.l(_printf_lld.o) - 0x110121ca 0x110121ca 0x0000000a Code RO 4747 .ARM.Collect$$_printf_percent$$0000000F c_p.l(_printf_llu.o) - 0x110121d4 0x110121d4 0x0000000a Code RO 4752 .ARM.Collect$$_printf_percent$$00000010 c_p.l(_printf_llo.o) - 0x110121de 0x110121de 0x0000000a Code RO 4753 .ARM.Collect$$_printf_percent$$00000011 c_p.l(_printf_llx.o) - 0x110121e8 0x110121e8 0x0000000a Code RO 4749 .ARM.Collect$$_printf_percent$$00000012 c_p.l(_printf_l.o) - 0x110121f2 0x110121f2 0x0000000a Code RO 4734 .ARM.Collect$$_printf_percent$$00000013 c_p.l(_printf_c.o) - 0x110121fc 0x110121fc 0x0000000a Code RO 4661 .ARM.Collect$$_printf_percent$$00000014 c_p.l(_printf_s.o) - 0x11012206 0x11012206 0x0000000a Code RO 4750 .ARM.Collect$$_printf_percent$$00000015 c_p.l(_printf_lc.o) - 0x11012210 0x11012210 0x0000000a Code RO 4751 .ARM.Collect$$_printf_percent$$00000016 c_p.l(_printf_ls.o) - 0x1101221a 0x1101221a 0x00000004 Code RO 4744 .ARM.Collect$$_printf_percent$$00000017 c_p.l(_printf_percent_end.o) - 0x1101221e 0x1101221e 0x00000002 Code RO 4830 .ARM.Collect$$libinit$$00000000 c_p.l(libinit.o) - 0x11012220 0x11012220 0x00000000 Code RO 4853 .ARM.Collect$$libinit$$00000002 c_p.l(libinit2.o) - 0x11012220 0x11012220 0x00000000 Code RO 4855 .ARM.Collect$$libinit$$00000004 c_p.l(libinit2.o) - 0x11012220 0x11012220 0x00000000 Code RO 4858 .ARM.Collect$$libinit$$0000000A c_p.l(libinit2.o) - 0x11012220 0x11012220 0x00000000 Code RO 4860 .ARM.Collect$$libinit$$0000000C c_p.l(libinit2.o) - 0x11012220 0x11012220 0x00000000 Code RO 4862 .ARM.Collect$$libinit$$0000000E c_p.l(libinit2.o) - 0x11012220 0x11012220 0x00000006 Code RO 4863 .ARM.Collect$$libinit$$0000000F c_p.l(libinit2.o) - 0x11012226 0x11012226 0x00000000 Code RO 4865 .ARM.Collect$$libinit$$00000011 c_p.l(libinit2.o) - 0x11012226 0x11012226 0x0000000c Code RO 4866 .ARM.Collect$$libinit$$00000012 c_p.l(libinit2.o) - 0x11012232 0x11012232 0x00000000 Code RO 4867 .ARM.Collect$$libinit$$00000013 c_p.l(libinit2.o) - 0x11012232 0x11012232 0x00000000 Code RO 4869 .ARM.Collect$$libinit$$00000015 c_p.l(libinit2.o) - 0x11012232 0x11012232 0x0000000a Code RO 4870 .ARM.Collect$$libinit$$00000016 c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4871 .ARM.Collect$$libinit$$00000017 c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4873 .ARM.Collect$$libinit$$00000019 c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4875 .ARM.Collect$$libinit$$0000001B c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4877 .ARM.Collect$$libinit$$0000001D c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4879 .ARM.Collect$$libinit$$0000001F c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4881 .ARM.Collect$$libinit$$00000021 c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4883 .ARM.Collect$$libinit$$00000023 c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4885 .ARM.Collect$$libinit$$00000025 c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4889 .ARM.Collect$$libinit$$0000002C c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4891 .ARM.Collect$$libinit$$0000002E c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4893 .ARM.Collect$$libinit$$00000030 c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000000 Code RO 4895 .ARM.Collect$$libinit$$00000032 c_p.l(libinit2.o) - 0x1101223c 0x1101223c 0x00000002 Code RO 4896 .ARM.Collect$$libinit$$00000033 c_p.l(libinit2.o) - 0x1101223e 0x1101223e 0x00000002 Code RO 4920 .ARM.Collect$$libshutdown$$00000000 c_p.l(libshutdown.o) - 0x11012240 0x11012240 0x00000000 Code RO 4946 .ARM.Collect$$libshutdown$$00000002 c_p.l(libshutdown2.o) - 0x11012240 0x11012240 0x00000000 Code RO 4948 .ARM.Collect$$libshutdown$$00000004 c_p.l(libshutdown2.o) - 0x11012240 0x11012240 0x00000000 Code RO 4950 .ARM.Collect$$libshutdown$$00000006 c_p.l(libshutdown2.o) - 0x11012240 0x11012240 0x00000000 Code RO 4953 .ARM.Collect$$libshutdown$$00000009 c_p.l(libshutdown2.o) - 0x11012240 0x11012240 0x00000000 Code RO 4956 .ARM.Collect$$libshutdown$$0000000C c_p.l(libshutdown2.o) - 0x11012240 0x11012240 0x00000000 Code RO 4958 .ARM.Collect$$libshutdown$$0000000E c_p.l(libshutdown2.o) - 0x11012240 0x11012240 0x00000000 Code RO 4961 .ARM.Collect$$libshutdown$$00000011 c_p.l(libshutdown2.o) - 0x11012240 0x11012240 0x00000002 Code RO 4962 .ARM.Collect$$libshutdown$$00000012 c_p.l(libshutdown2.o) - 0x11012242 0x11012242 0x00000000 Code RO 4704 .ARM.Collect$$rtentry$$00000000 c_p.l(__rtentry.o) - 0x11012242 0x11012242 0x00000000 Code RO 4766 .ARM.Collect$$rtentry$$00000002 c_p.l(__rtentry2.o) - 0x11012242 0x11012242 0x00000006 Code RO 4778 .ARM.Collect$$rtentry$$00000004 c_p.l(__rtentry4.o) - 0x11012248 0x11012248 0x00000000 Code RO 4768 .ARM.Collect$$rtentry$$00000009 c_p.l(__rtentry2.o) - 0x11012248 0x11012248 0x00000004 Code RO 4769 .ARM.Collect$$rtentry$$0000000A c_p.l(__rtentry2.o) - 0x1101224c 0x1101224c 0x00000000 Code RO 4771 .ARM.Collect$$rtentry$$0000000C c_p.l(__rtentry2.o) - 0x1101224c 0x1101224c 0x00000008 Code RO 4772 .ARM.Collect$$rtentry$$0000000D c_p.l(__rtentry2.o) - 0x11012254 0x11012254 0x00000002 Code RO 4839 .ARM.Collect$$rtexit$$00000000 c_p.l(rtexit.o) - 0x11012256 0x11012256 0x00000000 Code RO 4898 .ARM.Collect$$rtexit$$00000002 c_p.l(rtexit2.o) - 0x11012256 0x11012256 0x00000004 Code RO 4899 .ARM.Collect$$rtexit$$00000003 c_p.l(rtexit2.o) - 0x1101225a 0x1101225a 0x00000006 Code RO 4900 .ARM.Collect$$rtexit$$00000004 c_p.l(rtexit2.o) - 0x11012260 0x11012260 0x00000038 Code RO 4667 .emb_text c_p.l(rt_memcpy.o) + 0x11012120 0x11012120 0x0000001c Code RO 5079 !!handler_zi c_p.l(__scatter_zi.o) + 0x1101213c 0x1101213c 0x00000002 Code RO 4769 .ARM.Collect$$_printf_percent$$00000000 c_p.l(_printf_percent.o) + 0x1101213e 0x1101213e 0x0000000a Code RO 4840 .ARM.Collect$$_printf_percent$$00000001 c_p.l(_printf_n.o) + 0x11012148 0x11012148 0x0000000a Code RO 4841 .ARM.Collect$$_printf_percent$$00000002 c_p.l(_printf_p.o) + 0x11012152 0x11012152 0x0000000a Code RO 4845 .ARM.Collect$$_printf_percent$$00000003 c_p.l(_printf_f.o) + 0x1101215c 0x1101215c 0x0000000a Code RO 4846 .ARM.Collect$$_printf_percent$$00000004 c_p.l(_printf_e.o) + 0x11012166 0x11012166 0x0000000a Code RO 4847 .ARM.Collect$$_printf_percent$$00000005 c_p.l(_printf_g.o) + 0x11012170 0x11012170 0x0000000a Code RO 4848 .ARM.Collect$$_printf_percent$$00000006 c_p.l(_printf_a.o) + 0x1101217a 0x1101217a 0x0000000a Code RO 4853 .ARM.Collect$$_printf_percent$$00000007 c_p.l(_printf_ll.o) + 0x11012184 0x11012184 0x0000000a Code RO 4843 .ARM.Collect$$_printf_percent$$00000008 c_p.l(_printf_i.o) + 0x1101218e 0x1101218e 0x0000000a Code RO 4768 .ARM.Collect$$_printf_percent$$00000009 c_p.l(_printf_d.o) + 0x11012198 0x11012198 0x0000000a Code RO 4844 .ARM.Collect$$_printf_percent$$0000000A c_p.l(_printf_u.o) + 0x110121a2 0x110121a2 0x0000000a Code RO 4842 .ARM.Collect$$_printf_percent$$0000000B c_p.l(_printf_o.o) + 0x110121ac 0x110121ac 0x0000000a Code RO 4767 .ARM.Collect$$_printf_percent$$0000000C c_p.l(_printf_x.o) + 0x110121b6 0x110121b6 0x0000000a Code RO 4850 .ARM.Collect$$_printf_percent$$0000000D c_p.l(_printf_lli.o) + 0x110121c0 0x110121c0 0x0000000a Code RO 4851 .ARM.Collect$$_printf_percent$$0000000E c_p.l(_printf_lld.o) + 0x110121ca 0x110121ca 0x0000000a Code RO 4852 .ARM.Collect$$_printf_percent$$0000000F c_p.l(_printf_llu.o) + 0x110121d4 0x110121d4 0x0000000a Code RO 4857 .ARM.Collect$$_printf_percent$$00000010 c_p.l(_printf_llo.o) + 0x110121de 0x110121de 0x0000000a Code RO 4858 .ARM.Collect$$_printf_percent$$00000011 c_p.l(_printf_llx.o) + 0x110121e8 0x110121e8 0x0000000a Code RO 4854 .ARM.Collect$$_printf_percent$$00000012 c_p.l(_printf_l.o) + 0x110121f2 0x110121f2 0x0000000a Code RO 4839 .ARM.Collect$$_printf_percent$$00000013 c_p.l(_printf_c.o) + 0x110121fc 0x110121fc 0x0000000a Code RO 4766 .ARM.Collect$$_printf_percent$$00000014 c_p.l(_printf_s.o) + 0x11012206 0x11012206 0x0000000a Code RO 4855 .ARM.Collect$$_printf_percent$$00000015 c_p.l(_printf_lc.o) + 0x11012210 0x11012210 0x0000000a Code RO 4856 .ARM.Collect$$_printf_percent$$00000016 c_p.l(_printf_ls.o) + 0x1101221a 0x1101221a 0x00000004 Code RO 4849 .ARM.Collect$$_printf_percent$$00000017 c_p.l(_printf_percent_end.o) + 0x1101221e 0x1101221e 0x00000002 Code RO 4935 .ARM.Collect$$libinit$$00000000 c_p.l(libinit.o) + 0x11012220 0x11012220 0x00000000 Code RO 4958 .ARM.Collect$$libinit$$00000002 c_p.l(libinit2.o) + 0x11012220 0x11012220 0x00000000 Code RO 4960 .ARM.Collect$$libinit$$00000004 c_p.l(libinit2.o) + 0x11012220 0x11012220 0x00000000 Code RO 4963 .ARM.Collect$$libinit$$0000000A c_p.l(libinit2.o) + 0x11012220 0x11012220 0x00000000 Code RO 4965 .ARM.Collect$$libinit$$0000000C c_p.l(libinit2.o) + 0x11012220 0x11012220 0x00000000 Code RO 4967 .ARM.Collect$$libinit$$0000000E c_p.l(libinit2.o) + 0x11012220 0x11012220 0x00000006 Code RO 4968 .ARM.Collect$$libinit$$0000000F c_p.l(libinit2.o) + 0x11012226 0x11012226 0x00000000 Code RO 4970 .ARM.Collect$$libinit$$00000011 c_p.l(libinit2.o) + 0x11012226 0x11012226 0x0000000c Code RO 4971 .ARM.Collect$$libinit$$00000012 c_p.l(libinit2.o) + 0x11012232 0x11012232 0x00000000 Code RO 4972 .ARM.Collect$$libinit$$00000013 c_p.l(libinit2.o) + 0x11012232 0x11012232 0x00000000 Code RO 4974 .ARM.Collect$$libinit$$00000015 c_p.l(libinit2.o) + 0x11012232 0x11012232 0x0000000a Code RO 4975 .ARM.Collect$$libinit$$00000016 c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4976 .ARM.Collect$$libinit$$00000017 c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4978 .ARM.Collect$$libinit$$00000019 c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4980 .ARM.Collect$$libinit$$0000001B c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4982 .ARM.Collect$$libinit$$0000001D c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4984 .ARM.Collect$$libinit$$0000001F c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4986 .ARM.Collect$$libinit$$00000021 c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4988 .ARM.Collect$$libinit$$00000023 c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4990 .ARM.Collect$$libinit$$00000025 c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4994 .ARM.Collect$$libinit$$0000002C c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4996 .ARM.Collect$$libinit$$0000002E c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 4998 .ARM.Collect$$libinit$$00000030 c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000000 Code RO 5000 .ARM.Collect$$libinit$$00000032 c_p.l(libinit2.o) + 0x1101223c 0x1101223c 0x00000002 Code RO 5001 .ARM.Collect$$libinit$$00000033 c_p.l(libinit2.o) + 0x1101223e 0x1101223e 0x00000002 Code RO 5025 .ARM.Collect$$libshutdown$$00000000 c_p.l(libshutdown.o) + 0x11012240 0x11012240 0x00000000 Code RO 5051 .ARM.Collect$$libshutdown$$00000002 c_p.l(libshutdown2.o) + 0x11012240 0x11012240 0x00000000 Code RO 5053 .ARM.Collect$$libshutdown$$00000004 c_p.l(libshutdown2.o) + 0x11012240 0x11012240 0x00000000 Code RO 5055 .ARM.Collect$$libshutdown$$00000006 c_p.l(libshutdown2.o) + 0x11012240 0x11012240 0x00000000 Code RO 5058 .ARM.Collect$$libshutdown$$00000009 c_p.l(libshutdown2.o) + 0x11012240 0x11012240 0x00000000 Code RO 5061 .ARM.Collect$$libshutdown$$0000000C c_p.l(libshutdown2.o) + 0x11012240 0x11012240 0x00000000 Code RO 5063 .ARM.Collect$$libshutdown$$0000000E c_p.l(libshutdown2.o) + 0x11012240 0x11012240 0x00000000 Code RO 5066 .ARM.Collect$$libshutdown$$00000011 c_p.l(libshutdown2.o) + 0x11012240 0x11012240 0x00000002 Code RO 5067 .ARM.Collect$$libshutdown$$00000012 c_p.l(libshutdown2.o) + 0x11012242 0x11012242 0x00000000 Code RO 4809 .ARM.Collect$$rtentry$$00000000 c_p.l(__rtentry.o) + 0x11012242 0x11012242 0x00000000 Code RO 4871 .ARM.Collect$$rtentry$$00000002 c_p.l(__rtentry2.o) + 0x11012242 0x11012242 0x00000006 Code RO 4883 .ARM.Collect$$rtentry$$00000004 c_p.l(__rtentry4.o) + 0x11012248 0x11012248 0x00000000 Code RO 4873 .ARM.Collect$$rtentry$$00000009 c_p.l(__rtentry2.o) + 0x11012248 0x11012248 0x00000004 Code RO 4874 .ARM.Collect$$rtentry$$0000000A c_p.l(__rtentry2.o) + 0x1101224c 0x1101224c 0x00000000 Code RO 4876 .ARM.Collect$$rtentry$$0000000C c_p.l(__rtentry2.o) + 0x1101224c 0x1101224c 0x00000008 Code RO 4877 .ARM.Collect$$rtentry$$0000000D c_p.l(__rtentry2.o) + 0x11012254 0x11012254 0x00000002 Code RO 4944 .ARM.Collect$$rtexit$$00000000 c_p.l(rtexit.o) + 0x11012256 0x11012256 0x00000000 Code RO 5003 .ARM.Collect$$rtexit$$00000002 c_p.l(rtexit2.o) + 0x11012256 0x11012256 0x00000004 Code RO 5004 .ARM.Collect$$rtexit$$00000003 c_p.l(rtexit2.o) + 0x1101225a 0x1101225a 0x00000006 Code RO 5005 .ARM.Collect$$rtexit$$00000004 c_p.l(rtexit2.o) + 0x11012260 0x11012260 0x00000038 Code RO 4772 .emb_text c_p.l(rt_memcpy.o) 0x11012298 0x11012298 0x00000048 Code RO 4 .text startup_xinc.o - 0x110122e0 0x110122e0 0x00000030 Code RO 4602 .text c_p.l(llmul.o) - 0x11012310 0x11012310 0x00000102 Code RO 4604 .text c_p.l(lludiv.o) + 0x110122e0 0x110122e0 0x00000030 Code RO 4707 .text c_p.l(llmul.o) + 0x11012310 0x11012310 0x00000102 Code RO 4709 .text c_p.l(lludiv.o) 0x11012412 0x11012412 0x00000002 PAD - 0x11012414 0x11012414 0x0000001c Code RO 4606 .text c_p.l(printf.o) - 0x11012430 0x11012430 0x0000001c Code RO 4608 .text c_p.l(__2printf.o) - 0x1101244c 0x1101244c 0x0000004e Code RO 4614 .text c_p.l(_printf_pad.o) - 0x1101249a 0x1101249a 0x00000052 Code RO 4616 .text c_p.l(_printf_str.o) - 0x110124ec 0x110124ec 0x0000006c Code RO 4618 .text c_p.l(_printf_dec.o) - 0x11012558 0x11012558 0x00000098 Code RO 4638 .text c_p.l(_printf_hex_int_ll_ptr.o) - 0x110125f0 0x110125f0 0x00000188 Code RO 4658 .text c_p.l(__printf_flags_ss_wp.o) - 0x11012778 0x11012778 0x0000005a Code RO 4665 .text c_p.l(memcmp.o) - 0x110127d2 0x110127d2 0x00000082 Code RO 4668 .text c_p.l(rt_memcpy.o) - 0x11012854 0x11012854 0x00000012 Code RO 4671 .text c_p.l(aeabi_memset.o) - 0x11012866 0x11012866 0x00000006 Code RO 4683 .text c_p.l(heapauxi.o) - 0x1101286c 0x1101286c 0x00000160 Code RO 4695 .text fz_ps.l(fdiv.o) - 0x110129cc 0x110129cc 0x00000030 Code RO 4698 .text fz_ps.l(ffixui.o) - 0x110129fc 0x110129fc 0x0000005e Code RO 4700 .text fz_ps.l(fflti.o) - 0x11012a5a 0x11012a5a 0x00000024 Code RO 4713 .text c_p.l(_printf_truncate.o) - 0x11012a7e 0x11012a7e 0x000000b0 Code RO 4715 .text c_p.l(_printf_intcommon.o) - 0x11012b2e 0x11012b2e 0x00000026 Code RO 4717 .text c_p.l(_printf_charcount.o) - 0x11012b54 0x11012b54 0x0000002e Code RO 4719 .text c_p.l(_printf_char.o) + 0x11012414 0x11012414 0x0000001c Code RO 4711 .text c_p.l(printf.o) + 0x11012430 0x11012430 0x0000001c Code RO 4713 .text c_p.l(__2printf.o) + 0x1101244c 0x1101244c 0x0000004e Code RO 4719 .text c_p.l(_printf_pad.o) + 0x1101249a 0x1101249a 0x00000052 Code RO 4721 .text c_p.l(_printf_str.o) + 0x110124ec 0x110124ec 0x0000006c Code RO 4723 .text c_p.l(_printf_dec.o) + 0x11012558 0x11012558 0x00000098 Code RO 4743 .text c_p.l(_printf_hex_int_ll_ptr.o) + 0x110125f0 0x110125f0 0x00000188 Code RO 4763 .text c_p.l(__printf_flags_ss_wp.o) + 0x11012778 0x11012778 0x0000005a Code RO 4770 .text c_p.l(memcmp.o) + 0x110127d2 0x110127d2 0x00000082 Code RO 4773 .text c_p.l(rt_memcpy.o) + 0x11012854 0x11012854 0x00000012 Code RO 4776 .text c_p.l(aeabi_memset.o) + 0x11012866 0x11012866 0x00000006 Code RO 4788 .text c_p.l(heapauxi.o) + 0x1101286c 0x1101286c 0x00000160 Code RO 4800 .text fz_ps.l(fdiv.o) + 0x110129cc 0x110129cc 0x00000030 Code RO 4803 .text fz_ps.l(ffixui.o) + 0x110129fc 0x110129fc 0x0000005e Code RO 4805 .text fz_ps.l(fflti.o) + 0x11012a5a 0x11012a5a 0x00000024 Code RO 4818 .text c_p.l(_printf_truncate.o) + 0x11012a7e 0x11012a7e 0x000000b0 Code RO 4820 .text c_p.l(_printf_intcommon.o) + 0x11012b2e 0x11012b2e 0x00000026 Code RO 4822 .text c_p.l(_printf_charcount.o) + 0x11012b54 0x11012b54 0x0000002e Code RO 4824 .text c_p.l(_printf_char.o) 0x11012b82 0x11012b82 0x00000002 PAD - 0x11012b84 0x11012b84 0x00000028 Code RO 4721 .text c_p.l(_printf_char_file.o) - 0x11012bac 0x11012bac 0x000000bc Code RO 4723 .text c_p.l(_printf_wctomb.o) - 0x11012c68 0x11012c68 0x00000070 Code RO 4726 .text c_p.l(_printf_longlong_dec.o) - 0x11012cd8 0x11012cd8 0x00000070 Code RO 4732 .text c_p.l(_printf_oct_int_ll.o) - 0x11012d48 0x11012d48 0x00000028 Code RO 4754 .text c_p.l(rtudiv10.o) - 0x11012d70 0x11012d70 0x0000007a Code RO 4782 .text c_p.l(lludiv10.o) + 0x11012b84 0x11012b84 0x00000028 Code RO 4826 .text c_p.l(_printf_char_file.o) + 0x11012bac 0x11012bac 0x000000bc Code RO 4828 .text c_p.l(_printf_wctomb.o) + 0x11012c68 0x11012c68 0x00000070 Code RO 4831 .text c_p.l(_printf_longlong_dec.o) + 0x11012cd8 0x11012cd8 0x00000070 Code RO 4837 .text c_p.l(_printf_oct_int_ll.o) + 0x11012d48 0x11012d48 0x00000028 Code RO 4859 .text c_p.l(rtudiv10.o) + 0x11012d70 0x11012d70 0x0000007a Code RO 4887 .text c_p.l(lludiv10.o) 0x11012dea 0x11012dea 0x00000002 PAD - 0x11012dec 0x11012dec 0x00000418 Code RO 4784 .text c_p.l(_printf_fp_dec.o) - 0x11013204 0x11013204 0x000002d8 Code RO 4786 .text c_p.l(_printf_fp_hex.o) - 0x110134dc 0x110134dc 0x00000030 Code RO 4789 .text c_p.l(_printf_char_common.o) - 0x1101350c 0x1101350c 0x0000002e Code RO 4791 .text c_p.l(_printf_wchar.o) - 0x1101353a 0x1101353a 0x00000040 Code RO 4793 .text c_p.l(_wcrtomb.o) - 0x1101357a 0x1101357a 0x0000003e Code RO 4795 .text c_p.l(sys_stackheap_outer.o) - 0x110135b8 0x110135b8 0x00000010 Code RO 4798 .text c_p.l(rt_ctype_table.o) - 0x110135c8 0x110135c8 0x00000008 Code RO 4803 .text c_p.l(rt_locale_intlibspace.o) - 0x110135d0 0x110135d0 0x00000088 Code RO 4805 .text c_p.l(_printf_fp_infnan.o) - 0x11013658 0x11013658 0x000000d8 Code RO 4809 .text c_p.l(bigflt0.o) - 0x11013730 0x11013730 0x00000580 Code RO 4812 .text c_p.l(btod.o) - 0x11013cb0 0x11013cb0 0x00000010 Code RO 4819 .text c_p.l(exit.o) - 0x11013cc0 0x11013cc0 0x00000008 Code RO 4835 .text c_p.l(libspace.o) - 0x11013cc8 0x11013cc8 0x00000088 Code RO 4850 .text c_p.l(strcmp.o) - 0x11013d50 0x11013d50 0x00000056 Code RO 4968 .text c_p.l(__dczerorl2.o) + 0x11012dec 0x11012dec 0x00000418 Code RO 4889 .text c_p.l(_printf_fp_dec.o) + 0x11013204 0x11013204 0x000002d8 Code RO 4891 .text c_p.l(_printf_fp_hex.o) + 0x110134dc 0x110134dc 0x00000030 Code RO 4894 .text c_p.l(_printf_char_common.o) + 0x1101350c 0x1101350c 0x0000002e Code RO 4896 .text c_p.l(_printf_wchar.o) + 0x1101353a 0x1101353a 0x00000040 Code RO 4898 .text c_p.l(_wcrtomb.o) + 0x1101357a 0x1101357a 0x0000003e Code RO 4900 .text c_p.l(sys_stackheap_outer.o) + 0x110135b8 0x110135b8 0x00000010 Code RO 4903 .text c_p.l(rt_ctype_table.o) + 0x110135c8 0x110135c8 0x00000008 Code RO 4908 .text c_p.l(rt_locale_intlibspace.o) + 0x110135d0 0x110135d0 0x00000088 Code RO 4910 .text c_p.l(_printf_fp_infnan.o) + 0x11013658 0x11013658 0x000000d8 Code RO 4914 .text c_p.l(bigflt0.o) + 0x11013730 0x11013730 0x00000580 Code RO 4917 .text c_p.l(btod.o) + 0x11013cb0 0x11013cb0 0x00000010 Code RO 4924 .text c_p.l(exit.o) + 0x11013cc0 0x11013cc0 0x00000008 Code RO 4940 .text c_p.l(libspace.o) + 0x11013cc8 0x11013cc8 0x00000088 Code RO 4955 .text c_p.l(strcmp.o) + 0x11013d50 0x11013d50 0x00000056 Code RO 5073 .text c_p.l(__dczerorl2.o) 0x11013da6 0x11013da6 0x00000002 PAD - 0x11013da8 0x11013da8 0x0000000c Ven RO 4976 Veneer$$Code anon$$obj.o - 0x11013db4 0x11013db4 0x0000000c Ven RO 4977 Veneer$$Code anon$$obj.o - 0x11013dc0 0x11013dc0 0x0000000c Ven RO 4978 Veneer$$Code anon$$obj.o - 0x11013dcc 0x11013dcc 0x0000000c Ven RO 4979 Veneer$$Code anon$$obj.o - 0x11013dd8 0x11013dd8 0x0000000c Ven RO 4980 Veneer$$Code anon$$obj.o - 0x11013de4 0x11013de4 0x0000000c Ven RO 4981 Veneer$$Code anon$$obj.o - 0x11013df0 0x11013df0 0x0000000c Ven RO 4982 Veneer$$Code anon$$obj.o - 0x11013dfc 0x11013dfc 0x0000000c Ven RO 4983 Veneer$$Code anon$$obj.o - 0x11013e08 0x11013e08 0x0000000c Ven RO 4984 Veneer$$Code anon$$obj.o - 0x11013e14 0x11013e14 0x0000000c Ven RO 4985 Veneer$$Code anon$$obj.o - 0x11013e20 0x11013e20 0x0000000c Ven RO 4986 Veneer$$Code anon$$obj.o - 0x11013e2c 0x11013e2c 0x0000000c Ven RO 4987 Veneer$$Code anon$$obj.o - 0x11013e38 0x11013e38 0x0000000c Ven RO 4988 Veneer$$Code anon$$obj.o - 0x11013e44 0x11013e44 0x0000000c Ven RO 4989 Veneer$$Code anon$$obj.o - 0x11013e50 0x11013e50 0x0000000c Ven RO 4990 Veneer$$Code anon$$obj.o - 0x11013e5c 0x11013e5c 0x0000000c Ven RO 4991 Veneer$$Code anon$$obj.o - 0x11013e68 0x11013e68 0x0000000c Ven RO 4992 Veneer$$Code anon$$obj.o - 0x11013e74 0x11013e74 0x0000000c Ven RO 4993 Veneer$$Code anon$$obj.o - 0x11013e80 0x11013e80 0x0000000c Ven RO 4994 Veneer$$Code anon$$obj.o - 0x11013e8c 0x11013e8c 0x0000000c Ven RO 4995 Veneer$$Code anon$$obj.o - 0x11013e98 0x11013e98 0x0000000c Ven RO 4996 Veneer$$Code anon$$obj.o - 0x11013ea4 0x11013ea4 0x0000000c Ven RO 4997 Veneer$$Code anon$$obj.o - 0x11013eb0 0x11013eb0 0x0000000c Ven RO 4998 Veneer$$Code anon$$obj.o - 0x11013ebc 0x11013ebc 0x0000000c Ven RO 4999 Veneer$$Code anon$$obj.o - 0x11013ec8 0x11013ec8 0x0000000c Ven RO 5000 Veneer$$Code anon$$obj.o - 0x11013ed4 0x11013ed4 0x0000000c Ven RO 5001 Veneer$$Code anon$$obj.o - 0x11013ee0 0x11013ee0 0x0000000c Ven RO 5002 Veneer$$Code anon$$obj.o - 0x11013eec 0x11013eec 0x00000014 Code RO 1330 i.GADC_Handler xc_drv_adc.o - 0x11013f00 0x11013f00 0x00000024 Code RO 2265 i.GPIO_Handler xc_drv_gpio.o - 0x11013f24 0x11013f24 0x0000002c Code RO 2453 i.PWM_Handler xc_drv_pwm.o - 0x11013f50 0x11013f50 0x00000008 Code RO 3492 i.SysTick_Handler xc_drv_systick.o + 0x11013da8 0x11013da8 0x0000000c Ven RO 5081 Veneer$$Code anon$$obj.o + 0x11013db4 0x11013db4 0x0000000c Ven RO 5082 Veneer$$Code anon$$obj.o + 0x11013dc0 0x11013dc0 0x0000000c Ven RO 5083 Veneer$$Code anon$$obj.o + 0x11013dcc 0x11013dcc 0x0000000c Ven RO 5084 Veneer$$Code anon$$obj.o + 0x11013dd8 0x11013dd8 0x0000000c Ven RO 5085 Veneer$$Code anon$$obj.o + 0x11013de4 0x11013de4 0x0000000c Ven RO 5086 Veneer$$Code anon$$obj.o + 0x11013df0 0x11013df0 0x0000000c Ven RO 5087 Veneer$$Code anon$$obj.o + 0x11013dfc 0x11013dfc 0x0000000c Ven RO 5088 Veneer$$Code anon$$obj.o + 0x11013e08 0x11013e08 0x0000000c Ven RO 5089 Veneer$$Code anon$$obj.o + 0x11013e14 0x11013e14 0x0000000c Ven RO 5090 Veneer$$Code anon$$obj.o + 0x11013e20 0x11013e20 0x0000000c Ven RO 5091 Veneer$$Code anon$$obj.o + 0x11013e2c 0x11013e2c 0x0000000c Ven RO 5092 Veneer$$Code anon$$obj.o + 0x11013e38 0x11013e38 0x0000000c Ven RO 5093 Veneer$$Code anon$$obj.o + 0x11013e44 0x11013e44 0x0000000c Ven RO 5094 Veneer$$Code anon$$obj.o + 0x11013e50 0x11013e50 0x0000000c Ven RO 5095 Veneer$$Code anon$$obj.o + 0x11013e5c 0x11013e5c 0x0000000c Ven RO 5096 Veneer$$Code anon$$obj.o + 0x11013e68 0x11013e68 0x0000000c Ven RO 5097 Veneer$$Code anon$$obj.o + 0x11013e74 0x11013e74 0x0000000c Ven RO 5098 Veneer$$Code anon$$obj.o + 0x11013e80 0x11013e80 0x0000000c Ven RO 5099 Veneer$$Code anon$$obj.o + 0x11013e8c 0x11013e8c 0x0000000c Ven RO 5100 Veneer$$Code anon$$obj.o + 0x11013e98 0x11013e98 0x0000000c Ven RO 5101 Veneer$$Code anon$$obj.o + 0x11013ea4 0x11013ea4 0x0000000c Ven RO 5102 Veneer$$Code anon$$obj.o + 0x11013eb0 0x11013eb0 0x0000000c Ven RO 5103 Veneer$$Code anon$$obj.o + 0x11013ebc 0x11013ebc 0x0000000c Ven RO 5104 Veneer$$Code anon$$obj.o + 0x11013ec8 0x11013ec8 0x0000000c Ven RO 5105 Veneer$$Code anon$$obj.o + 0x11013ed4 0x11013ed4 0x0000000c Ven RO 5106 Veneer$$Code anon$$obj.o + 0x11013ee0 0x11013ee0 0x0000000c Ven RO 5107 Veneer$$Code anon$$obj.o + 0x11013eec 0x11013eec 0x00000014 Code RO 1333 i.GADC_Handler xc_drv_adc.o + 0x11013f00 0x11013f00 0x00000024 Code RO 2268 i.GPIO_Handler xc_drv_gpio.o + 0x11013f24 0x11013f24 0x0000002c Code RO 2456 i.PWM_Handler xc_drv_pwm.o + 0x11013f50 0x11013f50 0x00000008 Code RO 3495 i.SysTick_Handler xc_drv_systick.o 0x11013f58 0x11013f58 0x00000020 Code RO 11 i.SystemInit system_xinc.o - 0x11013f78 0x11013f78 0x00000024 Code RO 3530 i.TIMER0_Handler xc_drv_timer.o - 0x11013f9c 0x11013f9c 0x00000024 Code RO 3531 i.TIMER1_Handler xc_drv_timer.o - 0x11013fc0 0x11013fc0 0x00000024 Code RO 3532 i.TIMER2_Handler xc_drv_timer.o - 0x11013fe4 0x11013fe4 0x00000024 Code RO 3533 i.TIMER3_Handler xc_drv_timer.o - 0x11014008 0x11014008 0x00000028 Code RO 4055 i.TaskProcess timeslice.o - 0x11014030 0x11014030 0x0000002c Code RO 4056 i.TaskRemarks timeslice.o - 0x1101405c 0x1101405c 0x0000000a Code RO 3729 i.UART0_Handler xc_drv_uart.o - 0x11014066 0x11014066 0x0000000a Code RO 3730 i.UART1_Handler xc_drv_uart.o - 0x11014070 0x11014070 0x0000000a Code RO 3731 i.UART2_Handler xc_drv_uart.o + 0x11013f78 0x11013f78 0x00000024 Code RO 3533 i.TIMER0_Handler xc_drv_timer.o + 0x11013f9c 0x11013f9c 0x00000024 Code RO 3534 i.TIMER1_Handler xc_drv_timer.o + 0x11013fc0 0x11013fc0 0x00000024 Code RO 3535 i.TIMER2_Handler xc_drv_timer.o + 0x11013fe4 0x11013fe4 0x00000024 Code RO 3536 i.TIMER3_Handler xc_drv_timer.o + 0x11014008 0x11014008 0x00000028 Code RO 4058 i.TaskProcess timeslice.o + 0x11014030 0x11014030 0x0000002c Code RO 4059 i.TaskRemarks timeslice.o + 0x1101405c 0x1101405c 0x0000000a Code RO 3732 i.UART0_Handler xc_drv_uart.o + 0x11014066 0x11014066 0x0000000a Code RO 3733 i.UART1_Handler xc_drv_uart.o + 0x11014070 0x11014070 0x0000000a Code RO 3734 i.UART2_Handler xc_drv_uart.o 0x1101407a 0x1101407a 0x00000002 PAD - 0x1101407c 0x1101407c 0x00000020 Code RO 3942 i.WDT_Handler xc_drv_wdt.o + 0x1101407c 0x1101407c 0x00000020 Code RO 3945 i.WDT_Handler xc_drv_wdt.o 0x1101409c 0x1101409c 0x0000004c Code RO 12 i.WDT_ResetInit system_xinc.o - 0x110140e8 0x110140e8 0x000000ac Code RO 4138 i._433_fun rf433.o - 0x11014194 0x11014194 0x00000030 Code RO 4814 i.__ARM_common_ll_muluu c_p.l(btod.o) - 0x110141c4 0x110141c4 0x0000001a Code RO 746 i.__ARM_common_switch8 arch_main.o - 0x110141de 0x110141de 0x00000002 PAD - 0x110141e0 0x110141e0 0x0000002c Code RO 4833 i.__ARM_fpclassify m_ps.l(fpclassify.o) - 0x1101420c 0x1101420c 0x0000000e Code RO 4651 i._is_digit c_p.l(__printf_wp.o) - 0x1101421a 0x1101421a 0x00000002 Code RO 13 i._sys_exit system_xinc.o - 0x1101421c 0x1101421c 0x0000008c Code RO 1331 i.adc_intr_callback xc_drv_adc.o - 0x110142a8 0x110142a8 0x00000048 Code RO 536 i.app_create_advertising app_task.o - 0x110142f0 0x110142f0 0x0000003c Code RO 537 i.app_delete_advertising app_task.o - 0x1101432c 0x1101432c 0x00000028 Code RO 538 i.app_get_dev_name app_task.o - 0x11014354 0x11014354 0x00000044 Code RO 539 i.app_init app_task.o - 0x11014398 0x11014398 0x00000040 Code RO 4139 i.app_key_callback_handler rf433.o - 0x110143d8 0x110143d8 0x00000068 Code RO 4287 i.app_key_click_detection key.o - 0x11014440 0x11014440 0x00000030 Code RO 4288 i.app_key_init key.o - 0x11014470 0x11014470 0x00000054 Code RO 4290 i.app_key_scan key.o - 0x110144c4 0x110144c4 0x00000070 Code RO 540 i.app_msg_handler app_task.o - 0x11014534 0x11014534 0x0000003c Code RO 4384 i.app_op_flash ota_flash_interface.o - 0x11014570 0x11014570 0x00000018 Code RO 4385 i.app_op_flash_on ota_flash_interface.o - 0x11014588 0x11014588 0x00000004 Code RO 803 i.app_sec_msg_dflt_handler app_sec.o - 0x1101458c 0x1101458c 0x00000068 Code RO 541 i.app_set_adv_data app_task.o - 0x110145f4 0x110145f4 0x0000003c Code RO 544 i.app_start_advertising app_task.o - 0x11014630 0x11014630 0x00000058 Code RO 678 i.app_uart_init arch_main.o - 0x11014688 0x11014688 0x00000018 Code RO 4100 i.ble_callback uart_1.o - 0x110146a0 0x110146a0 0x000000b8 Code RO 4386 i.ble_flash_handle ota_flash_interface.o - 0x11014758 0x11014758 0x0000001c Code RO 4387 i.ble_flash_later_page_erase ota_flash_interface.o - 0x11014774 0x11014774 0x0000002c Code RO 4389 i.ble_flash_later_write_page ota_flash_interface.o - 0x110147a0 0x110147a0 0x00000030 Code RO 4101 i.ble_message_process uart_1.o - 0x110147d0 0x110147d0 0x00000048 Code RO 4140 i.ble_mode_scan rf433.o - 0x11014818 0x11014818 0x0000006c Code RO 679 i.bluetooth_init arch_main.o - 0x11014884 0x11014884 0x00000090 Code RO 680 i.board_init arch_main.o - 0x11014914 0x11014914 0x00000058 Code RO 4141 i.chx_gpio_init rf433.o - 0x1101496c 0x1101496c 0x00000070 Code RO 889 i.clock_init sleep.o - 0x110149dc 0x110149dc 0x000000dc Code RO 929 i.custom_svc_add usr_server.o - 0x11014ab8 0x11014ab8 0x000000b0 Code RO 930 i.custom_svc_cb_att_read_get usr_server.o - 0x11014b68 0x11014b68 0x000001a8 Code RO 931 i.custom_svc_cb_att_val_set usr_server.o - 0x11014d10 0x11014d10 0x0000004c Code RO 932 i.custom_svc_cb_event_sent usr_server.o - 0x11014d5c 0x11014d5c 0x00000030 Code RO 3494 i.delay_us xc_drv_systick.o - 0x11014d8c 0x11014d8c 0x0000000e Code RO 2131 i.extract32_16 xc_drv_fmc_spi.o - 0x11014d9a 0x11014d9a 0x00000006 Code RO 15 i.ferror system_xinc.o - 0x11014da0 0x11014da0 0x00000164 Code RO 681 i.flash_init arch_main.o - 0x11014f04 0x11014f04 0x0000000e Code RO 4142 i.flash_run rf433.o - 0x11014f12 0x11014f12 0x00000056 Code RO 2132 i.flash_size_and_type_get xc_drv_fmc_spi.o - 0x11014f68 0x11014f68 0x0000002c Code RO 4244 i.fmc_spi_read fmc_spi_1.o - 0x11014f94 0x11014f94 0x00000200 Code RO 805 i.gapc_bond_ind_handler app_sec.o - 0x11015194 0x11015194 0x0000021c Code RO 806 i.gapc_bond_req_ind_handler app_sec.o - 0x110153b0 0x110153b0 0x0000034c Code RO 546 i.gapc_callback app_task.o - 0x110156fc 0x110156fc 0x0000006c Code RO 807 i.gapc_encrypt_ind_handler app_sec.o - 0x11015768 0x11015768 0x000001c8 Code RO 808 i.gapc_encrypt_req_ind_handler app_sec.o - 0x11015930 0x11015930 0x00000088 Code RO 547 i.gapc_get_device_info_req_ind app_task.o - 0x110159b8 0x110159b8 0x00000144 Code RO 548 i.gapm_callback app_task.o - 0x11015afc 0x11015afc 0x000000a4 Code RO 549 i.gapm_cmp_evt app_task.o - 0x11015ba0 0x11015ba0 0x00000008 Code RO 550 i.get_app_env app_task.o - 0x11015ba8 0x11015ba8 0x0000001c Code RO 4245 i.get_checksum fmc_spi_1.o - 0x11015bc4 0x11015bc4 0x0000002e Code RO 4291 i.get_click_event key.o - 0x11015bf2 0x11015bf2 0x00000002 PAD - 0x11015bf4 0x11015bf4 0x00000014 Code RO 1022 i.get_fota_env_addr nvds.o - 0x11015c08 0x11015c08 0x00000038 Code RO 4206 i.gpio_intr_callback switch_s.o - 0x11015c40 0x11015c40 0x00000014 Code RO 4292 i.gpio_key_check key.o - 0x11015c54 0x11015c54 0x00000014 Code RO 4293 i.key_click_state_reset key.o - 0x11015c68 0x11015c68 0x0000003c Code RO 4351 i.led_gpio_init led.o - 0x11015ca4 0x11015ca4 0x00000054 Code RO 682 i.main arch_main.o - 0x11015cf8 0x11015cf8 0x00000034 Code RO 1023 i.nvds_browse_tag nvds.o - 0x11015d2c 0x11015d2c 0x00000038 Code RO 1024 i.nvds_del nvds.o - 0x11015d64 0x11015d64 0x00000080 Code RO 1025 i.nvds_erase nvds.o - 0x11015de4 0x11015de4 0x00000044 Code RO 1026 i.nvds_get nvds.o - 0x11015e28 0x11015e28 0x00000044 Code RO 1027 i.nvds_init nvds.o - 0x11015e6c 0x11015e6c 0x00000020 Code RO 1028 i.nvds_init_memory nvds.o - 0x11015e8c 0x11015e8c 0x0000002c Code RO 1029 i.nvds_is_magic_number_ok nvds.o - 0x11015eb8 0x11015eb8 0x00000068 Code RO 1031 i.nvds_purge nvds.o - 0x11015f20 0x11015f20 0x000000d4 Code RO 1032 i.nvds_put nvds.o - 0x11015ff4 0x11015ff4 0x00000028 Code RO 1033 i.nvds_read nvds.o - 0x1101601c 0x1101601c 0x00000084 Code RO 1034 i.nvds_space_init nvds.o - 0x110160a0 0x110160a0 0x00000038 Code RO 1035 i.nvds_walk_tag nvds.o - 0x110160d8 0x110160d8 0x00000028 Code RO 1036 i.nvds_write nvds.o - 0x11016100 0x11016100 0x0000009c Code RO 4546 i.ota_slave_send_data ota_server.o - 0x1101619c 0x1101619c 0x00000010 Code RO 4547 i.ota_srv_get_hdl_from_att_idx ota_server.o - 0x110161ac 0x110161ac 0x0000003c Code RO 4444 i.ota_write_flash ota_protocol.o - 0x110161e8 0x110161e8 0x00000034 Code RO 4352 i.pwm3_toggle led.o - 0x1101621c 0x1101621c 0x00000004 Code RO 2454 i.pwm_capture_ch0_callback xc_drv_pwm.o - 0x11016220 0x11016220 0x00000004 Code RO 2455 i.pwm_capture_ch1_callback xc_drv_pwm.o - 0x11016224 0x11016224 0x00000004 Code RO 2456 i.pwm_capture_ch2_callback xc_drv_pwm.o - 0x11016228 0x11016228 0x000000dc Code RO 2457 i.pwm_freq_to_period xc_drv_pwm.o - 0x11016304 0x11016304 0x000000c0 Code RO 2458 i.pwm_pin_set xc_drv_pwm.o - 0x110163c4 0x110163c4 0x00000084 Code RO 4246 i.read_user_data fmc_spi_1.o - 0x11016448 0x11016448 0x0000000e Code RO 2133 i.reverse_verif_is_true xc_drv_fmc_spi.o - 0x11016456 0x11016456 0x0000001e Code RO 4143 i.rf433_gpio_init rf433.o - 0x11016474 0x11016474 0x000000f8 Code RO 4144 i.rf433_receive rf433.o - 0x1101656c 0x1101656c 0x00000028 Code RO 683 i.rom_env_host_init arch_main.o - 0x11016594 0x11016594 0x0000019c Code RO 4145 i.scan_433 rf433.o - 0x11016730 0x11016730 0x00000090 Code RO 4102 i.scan_uart uart_1.o - 0x110167c0 0x110167c0 0x00000010 Code RO 4057 i.set_TaskComps_timer timeslice.o - 0x110167d0 0x110167d0 0x0000009c Code RO 684 i.set_single_addr_name arch_main.o - 0x1101686c 0x1101686c 0x0000003c Code RO 16 i.set_vector system_xinc.o - 0x110168a8 0x110168a8 0x0000009c Code RO 933 i.slave_send_data usr_server.o - 0x11016944 0x11016944 0x00000010 Code RO 934 i.srv_get_hdl_from_att_idx usr_server.o - 0x11016954 0x11016954 0x00000070 Code RO 4207 i.switch_init switch_s.o - 0x110169c4 0x110169c4 0x00000002 Code RO 3495 i.systick_callback xc_drv_systick.o - 0x110169c6 0x110169c6 0x00000002 PAD - 0x110169c8 0x110169c8 0x00000088 Code RO 4015 i.timer0_2_init timer.o - 0x11016a50 0x11016a50 0x00000002 Code RO 3537 i.timer3_callback xc_drv_timer.o - 0x11016a52 0x11016a52 0x00000002 PAD - 0x11016a54 0x11016a54 0x00000270 Code RO 4208 i.trigger_check_process switch_s.o - 0x11016cc4 0x11016cc4 0x000000b0 Code RO 3732 i.uart_user_handler xc_drv_uart.o - 0x11016d74 0x11016d74 0x00000016 Code RO 4016 i.updateTimer timer.o - 0x11016d8a 0x11016d8a 0x0000001a Code RO 686 i.wdt_init arch_main.o - 0x11016da4 0x11016da4 0x00000088 Code RO 4247 i.wright_user_data fmc_spi_1.o - 0x11016e2c 0x11016e2c 0x0000007c Code RO 1337 i.xc_adc_data_average xc_drv_adc.o - 0x11016ea8 0x11016ea8 0x00000028 Code RO 1132 i.xc_ble_activity_delete xc_gap_api.o - 0x11016ed0 0x11016ed0 0x00000030 Code RO 1593 i.xc_bor_init xc_drv_bor.o - 0x11016f00 0x11016f00 0x00000040 Code RO 1836 i.xc_clock_bbpll_common_cfg xc_drv_clock.o - 0x11016f40 0x11016f40 0x000000ec Code RO 1837 i.xc_clock_bbpll_freq_cfg xc_drv_clock.o - 0x1101702c 0x1101702c 0x0000000c Code RO 1838 i.xc_clock_hfclk_in_get xc_drv_clock.o - 0x11017038 0x11017038 0x000000dc Code RO 1839 i.xc_clock_hfclk_set xc_drv_clock.o - 0x11017114 0x11017114 0x00000016 Code RO 1841 i.xc_clock_init_cfg xc_drv_clock.o - 0x1101712a 0x1101712a 0x00000002 PAD - 0x1101712c 0x1101712c 0x0000000c Code RO 1842 i.xc_clock_lfclk_in_get xc_drv_clock.o - 0x11017138 0x11017138 0x0000006c Code RO 1843 i.xc_clock_lfclk_set xc_drv_clock.o - 0x110171a4 0x110171a4 0x00000028 Code RO 4448 i.xc_fota_dev_ack_cmd ota_protocol.o - 0x110171cc 0x110171cc 0x0000001c Code RO 2267 i.xc_gpio_direction_config xc_drv_gpio.o - 0x110171e8 0x110171e8 0x00000028 Code RO 2268 i.xc_gpio_fun_sel xc_drv_gpio.o - 0x11017210 0x11017210 0x0000002e Code RO 2269 i.xc_gpio_init xc_drv_gpio.o - 0x1101723e 0x1101723e 0x00000002 PAD - 0x11017240 0x11017240 0x00000034 Code RO 2270 i.xc_gpio_it_config xc_drv_gpio.o - 0x11017274 0x11017274 0x0000004c Code RO 2271 i.xc_gpio_mux_ctl xc_drv_gpio.o - 0x110172c0 0x110172c0 0x000000e8 Code RO 2272 i.xc_gpio_pull_config xc_drv_gpio.o - 0x110173a8 0x110173a8 0x00000024 Code RO 2273 i.xc_gpio_read_pin xc_drv_gpio.o - 0x110173cc 0x110173cc 0x0000002c Code RO 2274 i.xc_gpio_toggle_pin xc_drv_gpio.o - 0x110173f8 0x110173f8 0x0000001c Code RO 2275 i.xc_gpio_write_pin xc_drv_gpio.o - 0x11017414 0x11017414 0x00000040 Code RO 1858 i.xc_hfclk_set xc_drv_clock.o - 0x11017454 0x11017454 0x00000064 Code RO 4452 i.xc_ota_schedule ota_protocol.o - 0x110174b8 0x110174b8 0x00000070 Code RO 2481 i.xc_pwm_dutycycle_set xc_drv_pwm.o - 0x11017528 0x11017528 0x000000e0 Code RO 2482 i.xc_pwm_init xc_drv_pwm.o - 0x11017608 0x11017608 0x0000001c Code RO 2487 i.xc_pwm_start_all xc_drv_pwm.o - 0x11017624 0x11017624 0x0000005c Code RO 2905 i.xc_pwr_vol_set xc_drv_pwr.o - 0x11017680 0x11017680 0x000000f8 Code RO 1681 i.xc_rc32k_soft_calib_set xc_drv_calib.o - 0x11017778 0x11017778 0x0000021c Code RO 1859 i.xc_system_param_check xc_drv_clock.o - 0x11017994 0x11017994 0x0000000c Code RO 1861 i.xc_systick_unit_get xc_drv_clock.o - 0x110179a0 0x110179a0 0x00000120 Code RO 3538 i.xc_timer_init xc_drv_timer.o - 0x11017ac0 0x11017ac0 0x00000028 Code RO 3539 i.xc_timer_set_value xc_drv_timer.o - 0x11017ae8 0x11017ae8 0x0000003c Code RO 3540 i.xc_timer_start xc_drv_timer.o - 0x11017b24 0x11017b24 0x000000f4 Code RO 3542 i.xc_timer_us_to_ticks xc_drv_timer.o - 0x11017c18 0x11017c18 0x000001f0 Code RO 3736 i.xc_uart_init xc_drv_uart.o - 0x11017e08 0x11017e08 0x000000e8 Code RO 2135 i.xc_unique_identification_read xc_drv_fmc_spi.o - 0x11017ef0 0x11017ef0 0x00000068 Code RO 3945 i.xc_wdt_init xc_drv_wdt.o - 0x11017f58 0x11017f58 0x00000040 Code RO 3946 i.xc_wdt_refresh xc_drv_wdt.o - 0x11017f98 0x11017f98 0x00000044 Code RO 3947 i.xc_wdt_reload xc_drv_wdt.o - 0x11017fdc 0x11017fdc 0x00000034 Code RO 3948 i.xc_wdt_start xc_drv_wdt.o - 0x11018010 0x11018010 0x0000002c Code RO 4817 locale$$code c_p.l(lc_numeric_c.o) - 0x1101803c 0x1101803c 0x0000002c Code RO 4844 locale$$code c_p.l(lc_ctype_c.o) - 0x11018068 0x11018068 0x000000b0 Code RO 4702 x$fpl$fmul fz_ps.l(fmul.o) - 0x11018118 0x11018118 0x00000010 Code RO 4756 x$fpl$printf1 fz_ps.l(printf1.o) - 0x11018128 0x11018128 0x00000010 Code RO 4758 x$fpl$printf2 fz_ps.l(printf2.o) - 0x11018138 0x11018138 0x00000000 Code RO 4764 x$fpl$usenofp fz_ps.l(usenofp.o) - 0x11018138 0x11018138 0x00000008 Data RO 551 .constdata app_task.o - 0x11018140 0x11018140 0x00000038 Data RO 552 .constdata app_task.o - 0x11018178 0x11018178 0x00000002 Data RO 689 .constdata arch_main.o - 0x1101817a 0x1101817a 0x00000002 PAD - 0x1101817c 0x1101817c 0x00000028 Data RO 810 .constdata app_sec.o - 0x110181a4 0x110181a4 0x00000008 Data RO 811 .constdata app_sec.o - 0x110181ac 0x110181ac 0x00000086 Data RO 935 .constdata usr_server.o - 0x11018232 0x11018232 0x00000004 Data RO 1038 .constdata nvds.o - 0x11018236 0x11018236 0x0000001f Data RO 2498 .constdata xc_drv_pwm.o - 0x11018255 0x11018255 0x00000004 Data RO 3543 .constdata xc_drv_timer.o - 0x11018259 0x11018259 0x00000001 PAD - 0x1101825a 0x1101825a 0x00000006 Data RO 3743 .constdata xc_drv_uart.o - 0x11018260 0x11018260 0x00000010 Data RO 4455 .constdata ota_protocol.o - 0x11018270 0x11018270 0x00000028 Data RO 4639 .constdata c_p.l(_printf_hex_int_ll_ptr.o) - 0x11018298 0x11018298 0x00000011 Data RO 4659 .constdata c_p.l(__printf_flags_ss_wp.o) - 0x110182a9 0x110182a9 0x00000040 Data RO 4696 .constdata fz_ps.l(fdiv.o) - 0x110182e9 0x110182e9 0x00000003 PAD - 0x110182ec 0x110182ec 0x00000008 Data RO 4724 .constdata c_p.l(_printf_wctomb.o) - 0x110182f4 0x110182f4 0x00000026 Data RO 4787 .constdata c_p.l(_printf_fp_hex.o) - 0x1101831a 0x1101831a 0x00000002 PAD - 0x1101831c 0x1101831c 0x00000094 Data RO 4810 .constdata c_p.l(bigflt0.o) - 0x110183b0 0x110183b0 0x000000cf Data RO 553 .conststring app_task.o - 0x1101847f 0x1101847f 0x00000001 PAD - 0x11018480 0x11018480 0x00000055 Data RO 936 .conststring usr_server.o - 0x110184d5 0x110184d5 0x00000003 PAD - 0x110184d8 0x110184d8 0x00000062 Data RO 2499 .conststring xc_drv_pwm.o - 0x1101853a 0x1101853a 0x00000002 PAD - 0x1101853c 0x1101853c 0x00000050 Data RO 4966 Region$$Table anon$$obj.o - 0x1101858c 0x1101858c 0x0000001c Data RO 4816 locale$$data c_p.l(lc_numeric_c.o) - 0x110185a8 0x110185a8 0x00000110 Data RO 4843 locale$$data c_p.l(lc_ctype_c.o) + 0x110140e8 0x110140e8 0x00000084 Code RO 4141 i._433_fun rf433.o + 0x1101416c 0x1101416c 0x00000030 Code RO 4919 i.__ARM_common_ll_muluu c_p.l(btod.o) + 0x1101419c 0x1101419c 0x0000001a Code RO 746 i.__ARM_common_switch8 arch_main.o + 0x110141b6 0x110141b6 0x00000002 PAD + 0x110141b8 0x110141b8 0x0000002c Code RO 4938 i.__ARM_fpclassify m_ps.l(fpclassify.o) + 0x110141e4 0x110141e4 0x0000000e Code RO 4756 i._is_digit c_p.l(__printf_wp.o) + 0x110141f2 0x110141f2 0x00000002 Code RO 13 i._sys_exit system_xinc.o + 0x110141f4 0x110141f4 0x0000008c Code RO 1334 i.adc_intr_callback xc_drv_adc.o + 0x11014280 0x11014280 0x00000048 Code RO 536 i.app_create_advertising app_task.o + 0x110142c8 0x110142c8 0x0000003c Code RO 537 i.app_delete_advertising app_task.o + 0x11014304 0x11014304 0x00000028 Code RO 538 i.app_get_dev_name app_task.o + 0x1101432c 0x1101432c 0x00000044 Code RO 539 i.app_init app_task.o + 0x11014370 0x11014370 0x00000040 Code RO 4142 i.app_key_callback_handler rf433.o + 0x110143b0 0x110143b0 0x00000068 Code RO 4292 i.app_key_click_detection key.o + 0x11014418 0x11014418 0x00000030 Code RO 4293 i.app_key_init key.o + 0x11014448 0x11014448 0x00000054 Code RO 4295 i.app_key_scan key.o + 0x1101449c 0x1101449c 0x00000070 Code RO 540 i.app_msg_handler app_task.o + 0x1101450c 0x1101450c 0x0000003c Code RO 4389 i.app_op_flash ota_flash_interface.o + 0x11014548 0x11014548 0x00000018 Code RO 4390 i.app_op_flash_on ota_flash_interface.o + 0x11014560 0x11014560 0x00000004 Code RO 806 i.app_sec_msg_dflt_handler app_sec.o + 0x11014564 0x11014564 0x00000068 Code RO 541 i.app_set_adv_data app_task.o + 0x110145cc 0x110145cc 0x0000003c Code RO 544 i.app_start_advertising app_task.o + 0x11014608 0x11014608 0x00000058 Code RO 678 i.app_uart_init arch_main.o + 0x11014660 0x11014660 0x00000018 Code RO 4103 i.ble_callback uart_1.o + 0x11014678 0x11014678 0x000000b8 Code RO 4391 i.ble_flash_handle ota_flash_interface.o + 0x11014730 0x11014730 0x0000001c Code RO 4392 i.ble_flash_later_page_erase ota_flash_interface.o + 0x1101474c 0x1101474c 0x0000002c Code RO 4394 i.ble_flash_later_write_page ota_flash_interface.o + 0x11014778 0x11014778 0x00000030 Code RO 4104 i.ble_message_process uart_1.o + 0x110147a8 0x110147a8 0x00000048 Code RO 4143 i.ble_mode_scan rf433.o + 0x110147f0 0x110147f0 0x0000006c Code RO 679 i.bluetooth_init arch_main.o + 0x1101485c 0x1101485c 0x00000094 Code RO 680 i.board_init arch_main.o + 0x110148f0 0x110148f0 0x00000058 Code RO 4144 i.chx_gpio_init rf433.o + 0x11014948 0x11014948 0x00000070 Code RO 892 i.clock_init sleep.o + 0x110149b8 0x110149b8 0x000000dc Code RO 932 i.custom_svc_add usr_server.o + 0x11014a94 0x11014a94 0x000000b0 Code RO 933 i.custom_svc_cb_att_read_get usr_server.o + 0x11014b44 0x11014b44 0x000001a8 Code RO 934 i.custom_svc_cb_att_val_set usr_server.o + 0x11014cec 0x11014cec 0x0000004c Code RO 935 i.custom_svc_cb_event_sent usr_server.o + 0x11014d38 0x11014d38 0x00000030 Code RO 3497 i.delay_us xc_drv_systick.o + 0x11014d68 0x11014d68 0x0000000e Code RO 2134 i.extract32_16 xc_drv_fmc_spi.o + 0x11014d76 0x11014d76 0x00000006 Code RO 15 i.ferror system_xinc.o + 0x11014d7c 0x11014d7c 0x00000164 Code RO 681 i.flash_init arch_main.o + 0x11014ee0 0x11014ee0 0x0000000e Code RO 4145 i.flash_run rf433.o + 0x11014eee 0x11014eee 0x00000056 Code RO 2135 i.flash_size_and_type_get xc_drv_fmc_spi.o + 0x11014f44 0x11014f44 0x0000002c Code RO 4249 i.fmc_spi_read fmc_spi_1.o + 0x11014f70 0x11014f70 0x00000200 Code RO 808 i.gapc_bond_ind_handler app_sec.o + 0x11015170 0x11015170 0x0000021c Code RO 809 i.gapc_bond_req_ind_handler app_sec.o + 0x1101538c 0x1101538c 0x0000034c Code RO 546 i.gapc_callback app_task.o + 0x110156d8 0x110156d8 0x0000006c Code RO 810 i.gapc_encrypt_ind_handler app_sec.o + 0x11015744 0x11015744 0x000001c8 Code RO 811 i.gapc_encrypt_req_ind_handler app_sec.o + 0x1101590c 0x1101590c 0x00000088 Code RO 547 i.gapc_get_device_info_req_ind app_task.o + 0x11015994 0x11015994 0x00000144 Code RO 548 i.gapm_callback app_task.o + 0x11015ad8 0x11015ad8 0x000000a4 Code RO 549 i.gapm_cmp_evt app_task.o + 0x11015b7c 0x11015b7c 0x00000008 Code RO 550 i.get_app_env app_task.o + 0x11015b84 0x11015b84 0x0000001c Code RO 4250 i.get_checksum fmc_spi_1.o + 0x11015ba0 0x11015ba0 0x0000002e Code RO 4296 i.get_click_event key.o + 0x11015bce 0x11015bce 0x00000002 PAD + 0x11015bd0 0x11015bd0 0x00000014 Code RO 1025 i.get_fota_env_addr nvds.o + 0x11015be4 0x11015be4 0x00000038 Code RO 4211 i.gpio_intr_callback switch_s.o + 0x11015c1c 0x11015c1c 0x00000014 Code RO 4297 i.gpio_key_check key.o + 0x11015c30 0x11015c30 0x00000014 Code RO 4298 i.key_click_state_reset key.o + 0x11015c44 0x11015c44 0x0000003c Code RO 4356 i.led_gpio_init led.o + 0x11015c80 0x11015c80 0x00000054 Code RO 682 i.main arch_main.o + 0x11015cd4 0x11015cd4 0x00000034 Code RO 1026 i.nvds_browse_tag nvds.o + 0x11015d08 0x11015d08 0x00000038 Code RO 1027 i.nvds_del nvds.o + 0x11015d40 0x11015d40 0x00000080 Code RO 1028 i.nvds_erase nvds.o + 0x11015dc0 0x11015dc0 0x00000044 Code RO 1029 i.nvds_get nvds.o + 0x11015e04 0x11015e04 0x00000044 Code RO 1030 i.nvds_init nvds.o + 0x11015e48 0x11015e48 0x00000020 Code RO 1031 i.nvds_init_memory nvds.o + 0x11015e68 0x11015e68 0x0000002c Code RO 1032 i.nvds_is_magic_number_ok nvds.o + 0x11015e94 0x11015e94 0x00000068 Code RO 1034 i.nvds_purge nvds.o + 0x11015efc 0x11015efc 0x000000d4 Code RO 1035 i.nvds_put nvds.o + 0x11015fd0 0x11015fd0 0x00000028 Code RO 1036 i.nvds_read nvds.o + 0x11015ff8 0x11015ff8 0x00000084 Code RO 1037 i.nvds_space_init nvds.o + 0x1101607c 0x1101607c 0x00000038 Code RO 1038 i.nvds_walk_tag nvds.o + 0x110160b4 0x110160b4 0x00000028 Code RO 1039 i.nvds_write nvds.o + 0x110160dc 0x110160dc 0x0000009c Code RO 4551 i.ota_slave_send_data ota_server.o + 0x11016178 0x11016178 0x00000010 Code RO 4552 i.ota_srv_get_hdl_from_att_idx ota_server.o + 0x11016188 0x11016188 0x0000003c Code RO 4449 i.ota_write_flash ota_protocol.o + 0x110161c4 0x110161c4 0x00000034 Code RO 4357 i.pwm3_toggle led.o + 0x110161f8 0x110161f8 0x00000004 Code RO 2457 i.pwm_capture_ch0_callback xc_drv_pwm.o + 0x110161fc 0x110161fc 0x00000004 Code RO 2458 i.pwm_capture_ch1_callback xc_drv_pwm.o + 0x11016200 0x11016200 0x00000004 Code RO 2459 i.pwm_capture_ch2_callback xc_drv_pwm.o + 0x11016204 0x11016204 0x000000dc Code RO 2460 i.pwm_freq_to_period xc_drv_pwm.o + 0x110162e0 0x110162e0 0x000000c0 Code RO 2461 i.pwm_pin_set xc_drv_pwm.o + 0x110163a0 0x110163a0 0x00000084 Code RO 4251 i.read_user_data fmc_spi_1.o + 0x11016424 0x11016424 0x0000000e Code RO 2136 i.reverse_verif_is_true xc_drv_fmc_spi.o + 0x11016432 0x11016432 0x0000000e Code RO 4606 i.rf433_abs_diff_u16 rf433_decoder.o + 0x11016440 0x11016440 0x00000024 Code RO 4607 i.rf433_decode_reset rf433_decoder.o + 0x11016464 0x11016464 0x00000024 Code RO 4608 i.rf433_decoder_get_frame rf433_decoder.o + 0x11016488 0x11016488 0x00000034 Code RO 4610 i.rf433_decoder_init rf433_decoder.o + 0x110164bc 0x110164bc 0x00000040 Code RO 4611 i.rf433_decoder_process rf433_decoder.o + 0x110164fc 0x110164fc 0x00000074 Code RO 4612 i.rf433_decoder_sample rf433_decoder.o + 0x11016570 0x11016570 0x0000001e Code RO 4146 i.rf433_gpio_init rf433.o + 0x1101658e 0x1101658e 0x00000002 PAD + 0x11016590 0x11016590 0x0000001c Code RO 4613 i.rf433_is_long rf433_decoder.o + 0x110165ac 0x110165ac 0x0000001c Code RO 4614 i.rf433_is_short rf433_decoder.o + 0x110165c8 0x110165c8 0x00000010 Code RO 4615 i.rf433_limit_t rf433_decoder.o + 0x110165d8 0x110165d8 0x0000005c Code RO 4616 i.rf433_output_code rf433_decoder.o + 0x11016634 0x11016634 0x00000248 Code RO 4617 i.rf433_process_clean_pulse rf433_decoder.o + 0x1101687c 0x1101687c 0x000000c0 Code RO 4618 i.rf433_repair_input_pulse rf433_decoder.o + 0x1101693c 0x1101693c 0x00000018 Code RO 4619 i.rf433_repair_reset rf433_decoder.o + 0x11016954 0x11016954 0x0000006c Code RO 4620 i.rf433_update_range_by_t rf433_decoder.o + 0x110169c0 0x110169c0 0x00000028 Code RO 683 i.rom_env_host_init arch_main.o + 0x110169e8 0x110169e8 0x000001b0 Code RO 4148 i.scan_433 rf433.o + 0x11016b98 0x11016b98 0x00000090 Code RO 4105 i.scan_uart uart_1.o + 0x11016c28 0x11016c28 0x00000010 Code RO 4060 i.set_TaskComps_timer timeslice.o + 0x11016c38 0x11016c38 0x0000009c Code RO 684 i.set_single_addr_name arch_main.o + 0x11016cd4 0x11016cd4 0x0000003c Code RO 16 i.set_vector system_xinc.o + 0x11016d10 0x11016d10 0x0000009c Code RO 936 i.slave_send_data usr_server.o + 0x11016dac 0x11016dac 0x00000010 Code RO 937 i.srv_get_hdl_from_att_idx usr_server.o + 0x11016dbc 0x11016dbc 0x00000070 Code RO 4212 i.switch_init switch_s.o + 0x11016e2c 0x11016e2c 0x00000002 Code RO 3498 i.systick_callback xc_drv_systick.o + 0x11016e2e 0x11016e2e 0x00000002 PAD + 0x11016e30 0x11016e30 0x00000088 Code RO 4018 i.timer0_2_init timer.o + 0x11016eb8 0x11016eb8 0x00000002 Code RO 3540 i.timer3_callback xc_drv_timer.o + 0x11016eba 0x11016eba 0x00000002 PAD + 0x11016ebc 0x11016ebc 0x00000270 Code RO 4213 i.trigger_check_process switch_s.o + 0x1101712c 0x1101712c 0x000000b0 Code RO 3735 i.uart_user_handler xc_drv_uart.o + 0x110171dc 0x110171dc 0x00000016 Code RO 4019 i.updateTimer timer.o + 0x110171f2 0x110171f2 0x0000001a Code RO 686 i.wdt_init arch_main.o + 0x1101720c 0x1101720c 0x00000088 Code RO 4252 i.wright_user_data fmc_spi_1.o + 0x11017294 0x11017294 0x0000007c Code RO 1340 i.xc_adc_data_average xc_drv_adc.o + 0x11017310 0x11017310 0x00000028 Code RO 1135 i.xc_ble_activity_delete xc_gap_api.o + 0x11017338 0x11017338 0x00000030 Code RO 1596 i.xc_bor_init xc_drv_bor.o + 0x11017368 0x11017368 0x00000040 Code RO 1839 i.xc_clock_bbpll_common_cfg xc_drv_clock.o + 0x110173a8 0x110173a8 0x000000ec Code RO 1840 i.xc_clock_bbpll_freq_cfg xc_drv_clock.o + 0x11017494 0x11017494 0x0000000c Code RO 1841 i.xc_clock_hfclk_in_get xc_drv_clock.o + 0x110174a0 0x110174a0 0x000000dc Code RO 1842 i.xc_clock_hfclk_set xc_drv_clock.o + 0x1101757c 0x1101757c 0x00000016 Code RO 1844 i.xc_clock_init_cfg xc_drv_clock.o + 0x11017592 0x11017592 0x00000002 PAD + 0x11017594 0x11017594 0x0000000c Code RO 1845 i.xc_clock_lfclk_in_get xc_drv_clock.o + 0x110175a0 0x110175a0 0x0000006c Code RO 1846 i.xc_clock_lfclk_set xc_drv_clock.o + 0x1101760c 0x1101760c 0x00000028 Code RO 4453 i.xc_fota_dev_ack_cmd ota_protocol.o + 0x11017634 0x11017634 0x0000001c Code RO 2270 i.xc_gpio_direction_config xc_drv_gpio.o + 0x11017650 0x11017650 0x00000028 Code RO 2271 i.xc_gpio_fun_sel xc_drv_gpio.o + 0x11017678 0x11017678 0x0000002e Code RO 2272 i.xc_gpio_init xc_drv_gpio.o + 0x110176a6 0x110176a6 0x00000002 PAD + 0x110176a8 0x110176a8 0x00000034 Code RO 2273 i.xc_gpio_it_config xc_drv_gpio.o + 0x110176dc 0x110176dc 0x0000004c Code RO 2274 i.xc_gpio_mux_ctl xc_drv_gpio.o + 0x11017728 0x11017728 0x000000e8 Code RO 2275 i.xc_gpio_pull_config xc_drv_gpio.o + 0x11017810 0x11017810 0x00000024 Code RO 2276 i.xc_gpio_read_pin xc_drv_gpio.o + 0x11017834 0x11017834 0x0000002c Code RO 2277 i.xc_gpio_toggle_pin xc_drv_gpio.o + 0x11017860 0x11017860 0x0000001c Code RO 2278 i.xc_gpio_write_pin xc_drv_gpio.o + 0x1101787c 0x1101787c 0x00000040 Code RO 1861 i.xc_hfclk_set xc_drv_clock.o + 0x110178bc 0x110178bc 0x00000064 Code RO 4457 i.xc_ota_schedule ota_protocol.o + 0x11017920 0x11017920 0x00000070 Code RO 2484 i.xc_pwm_dutycycle_set xc_drv_pwm.o + 0x11017990 0x11017990 0x000000e0 Code RO 2485 i.xc_pwm_init xc_drv_pwm.o + 0x11017a70 0x11017a70 0x0000001c Code RO 2490 i.xc_pwm_start_all xc_drv_pwm.o + 0x11017a8c 0x11017a8c 0x0000005c Code RO 2908 i.xc_pwr_vol_set xc_drv_pwr.o + 0x11017ae8 0x11017ae8 0x000000f8 Code RO 1684 i.xc_rc32k_soft_calib_set xc_drv_calib.o + 0x11017be0 0x11017be0 0x0000021c Code RO 1862 i.xc_system_param_check xc_drv_clock.o + 0x11017dfc 0x11017dfc 0x0000000c Code RO 1864 i.xc_systick_unit_get xc_drv_clock.o + 0x11017e08 0x11017e08 0x00000120 Code RO 3541 i.xc_timer_init xc_drv_timer.o + 0x11017f28 0x11017f28 0x00000028 Code RO 3542 i.xc_timer_set_value xc_drv_timer.o + 0x11017f50 0x11017f50 0x0000003c Code RO 3543 i.xc_timer_start xc_drv_timer.o + 0x11017f8c 0x11017f8c 0x000000f4 Code RO 3545 i.xc_timer_us_to_ticks xc_drv_timer.o + 0x11018080 0x11018080 0x000001f0 Code RO 3739 i.xc_uart_init xc_drv_uart.o + 0x11018270 0x11018270 0x000000e8 Code RO 2138 i.xc_unique_identification_read xc_drv_fmc_spi.o + 0x11018358 0x11018358 0x00000068 Code RO 3948 i.xc_wdt_init xc_drv_wdt.o + 0x110183c0 0x110183c0 0x00000040 Code RO 3949 i.xc_wdt_refresh xc_drv_wdt.o + 0x11018400 0x11018400 0x00000044 Code RO 3950 i.xc_wdt_reload xc_drv_wdt.o + 0x11018444 0x11018444 0x00000034 Code RO 3951 i.xc_wdt_start xc_drv_wdt.o + 0x11018478 0x11018478 0x0000002c Code RO 4922 locale$$code c_p.l(lc_numeric_c.o) + 0x110184a4 0x110184a4 0x0000002c Code RO 4949 locale$$code c_p.l(lc_ctype_c.o) + 0x110184d0 0x110184d0 0x000000b0 Code RO 4807 x$fpl$fmul fz_ps.l(fmul.o) + 0x11018580 0x11018580 0x00000010 Code RO 4861 x$fpl$printf1 fz_ps.l(printf1.o) + 0x11018590 0x11018590 0x00000010 Code RO 4863 x$fpl$printf2 fz_ps.l(printf2.o) + 0x110185a0 0x110185a0 0x00000000 Code RO 4869 x$fpl$usenofp fz_ps.l(usenofp.o) + 0x110185a0 0x110185a0 0x00000008 Data RO 551 .constdata app_task.o + 0x110185a8 0x110185a8 0x00000038 Data RO 552 .constdata app_task.o + 0x110185e0 0x110185e0 0x00000002 Data RO 689 .constdata arch_main.o + 0x110185e2 0x110185e2 0x00000002 PAD + 0x110185e4 0x110185e4 0x00000028 Data RO 813 .constdata app_sec.o + 0x1101860c 0x1101860c 0x00000008 Data RO 814 .constdata app_sec.o + 0x11018614 0x11018614 0x00000086 Data RO 938 .constdata usr_server.o + 0x1101869a 0x1101869a 0x00000004 Data RO 1041 .constdata nvds.o + 0x1101869e 0x1101869e 0x0000001f Data RO 2501 .constdata xc_drv_pwm.o + 0x110186bd 0x110186bd 0x00000004 Data RO 3546 .constdata xc_drv_timer.o + 0x110186c1 0x110186c1 0x00000001 PAD + 0x110186c2 0x110186c2 0x00000006 Data RO 3746 .constdata xc_drv_uart.o + 0x110186c8 0x110186c8 0x00000010 Data RO 4460 .constdata ota_protocol.o + 0x110186d8 0x110186d8 0x00000028 Data RO 4744 .constdata c_p.l(_printf_hex_int_ll_ptr.o) + 0x11018700 0x11018700 0x00000011 Data RO 4764 .constdata c_p.l(__printf_flags_ss_wp.o) + 0x11018711 0x11018711 0x00000040 Data RO 4801 .constdata fz_ps.l(fdiv.o) + 0x11018751 0x11018751 0x00000003 PAD + 0x11018754 0x11018754 0x00000008 Data RO 4829 .constdata c_p.l(_printf_wctomb.o) + 0x1101875c 0x1101875c 0x00000026 Data RO 4892 .constdata c_p.l(_printf_fp_hex.o) + 0x11018782 0x11018782 0x00000002 PAD + 0x11018784 0x11018784 0x00000094 Data RO 4915 .constdata c_p.l(bigflt0.o) + 0x11018818 0x11018818 0x000000cf Data RO 553 .conststring app_task.o + 0x110188e7 0x110188e7 0x00000001 PAD + 0x110188e8 0x110188e8 0x00000055 Data RO 939 .conststring usr_server.o + 0x1101893d 0x1101893d 0x00000003 PAD + 0x11018940 0x11018940 0x00000062 Data RO 2502 .conststring xc_drv_pwm.o + 0x110189a2 0x110189a2 0x00000002 PAD + 0x110189a4 0x110189a4 0x000000b5 Data RO 4622 .conststring rf433_decoder.o + 0x11018a59 0x11018a59 0x00000003 PAD + 0x11018a5c 0x11018a5c 0x00000050 Data RO 5071 Region$$Table anon$$obj.o + 0x11018aac 0x11018aac 0x0000001c Data RO 4921 locale$$data c_p.l(lc_numeric_c.o) + 0x11018ac8 0x11018ac8 0x00000110 Data RO 4948 locale$$data c_p.l(lc_ctype_c.o) - Execution Region RW2 (Exec base: 0x53006c00, Load base: 0x11019190, Size: 0x00000a2c, Max: 0xffffffff, ABSOLUTE, COMPRESSED[0x00000018]) + Execution Region RW2 (Exec base: 0x53006c00, Load base: 0x110196c8, Size: 0x00000a2c, Max: 0xffffffff, ABSOLUTE, COMPRESSED[0x00000018]) Exec Addr Load Addr Size Type Attr Idx E Section Name Object - 0x53006c00 COMPRESSED 0x00000200 Data RW 1040 ram_em nvds.o - 0x53006e00 COMPRESSED 0x0000082b Data RW 4458 ram_em ota_protocol.o + 0x53006c00 COMPRESSED 0x00000200 Data RW 1043 ram_em nvds.o + 0x53006e00 COMPRESSED 0x0000082b Data RW 4463 ram_em ota_protocol.o ============================================================================== @@ -3368,7 +3482,7 @@ Image component sizes 0 0 0 0 0 125543 app_batt.o 1620 798 48 2 0 6408 app_sec.o 1992 822 271 53 0 15534 app_task.o - 1088 376 2 0 28 17179 arch_main.o + 1092 376 2 0 28 17771 arch_main.o 340 62 0 0 512 3353 fmc_spi_1.o 522 30 0 20 0 7991 key.o 112 16 0 2 0 1406 led.o @@ -3376,13 +3490,14 @@ Image component sizes 340 86 0 1 272 5439 ota_flash_interface.o 200 50 16 2108 276 3195 ota_protocol.o 172 80 0 4 0 2513 ota_server.o - 1100 46 0 56 0 8742 rf433.o + 832 46 0 60 12 8288 rf433.o + 1390 110 181 0 1102 12870 rf433_decoder.o 112 18 0 0 0 8773 sleep.o 72 32 192 0 1776 812 startup_xinc.o 792 28 0 22 0 4627 switch_s.o 200 38 0 4 0 43357 system_xinc.o - 326 30 0 24 0 3342 timer.o - 100 16 0 128 0 5834 timeslice.o + 334 30 0 24 0 3366 timer.o + 100 16 0 144 0 5858 timeslice.o 216 20 0 12 0 3517 uart_1.o 1068 544 219 4 0 26145 usr_server.o 284 42 0 2 64 11657 xc_drv_adc.o @@ -3401,9 +3516,9 @@ Image component sizes 40 4 0 0 0 1489 xc_gap_api.o ---------------------------------------------------------------------- - 19234 4368 980 3008 2980 502694 Object Totals - 432 144 80 0 0 0 (incl. Generated) - 14 0 9 14 0 0 (incl. Padding) + 20382 4482 1164 3024 4096 515750 Object Totals + 444 148 80 0 0 0 (incl. Generated) + 16 0 12 10 2 0 (incl. Padding) ---------------------------------------------------------------------- @@ -3520,15 +3635,15 @@ Image component sizes Code (inc. data) RO Data RW Data ZI Data Debug - 27376 4600 1600 3008 3076 498058 Grand Totals - 27376 4600 1600 120 3076 498058 ELF Image Totals (compressed) - 27376 4600 1600 120 0 0 ROM Totals + 28524 4714 1784 3024 4192 510542 Grand Totals + 28524 4714 1784 124 4192 510542 ELF Image Totals (compressed) + 28524 4714 1784 124 0 0 ROM Totals ============================================================================== - Total RO Size (Code + RO Data) 28976 ( 28.30kB) - Total RW Size (RW Data + ZI Data) 6084 ( 5.94kB) - Total ROM Size (Code + RO Data + RW Data) 29096 ( 28.41kB) + Total RO Size (Code + RO Data) 30308 ( 29.60kB) + Total RW Size (RW Data + ZI Data) 7216 ( 7.05kB) + Total ROM Size (Code + RO Data + RW Data) 30432 ( 29.72kB) ============================================================================== diff --git a/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.axf b/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.axf index 70ed00f..9322ee8 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.axf and b/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.axf differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.build_log.htm b/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.build_log.htm index 3ba3d05..cab97ad 100644 --- a/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.build_log.htm +++ b/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.build_log.htm @@ -22,7 +22,7 @@ Dialog DLL: TARMCM1.DLL V1.14.6.0

Project:

C:\Users\QJM\Desktop\6517_SDK\XC6XXXϵSDK_20260428\XC65+XC62ϵSDK_20260428\project\example\ble\ble_peripheral\mdk\ble_peripheral.uvprojx -Project File Date: 07/02/2026 +Project File Date: 07/03/2026

Output:

*** Using Compiler 'V5.06 update 7 (build 960)', folder: 'D:\Keil_v5\ARM\ARMCC\Bin' @@ -31,52 +31,56 @@ assembling startup_xinc.s... compiling system_xinc.c... compiling sleep.c... compiling app_batt.c... +compiling usr_server.c... +compiling app_sec.c... compiling arch_main.c... -..\app\src\arch_main.c(201): warning: #177-D: variable "spi_idx" was declared but never referenced +..\app\src\arch_main.c(202): warning: #177-D: variable "spi_idx" was declared but never referenced uint8_t spi_idx=0; -..\app\src\arch_main.c(339): warning: #223-D: function "rf_tx_power_set" declared implicitly +..\app\src\arch_main.c(341): warning: #223-D: function "rf_tx_power_set" declared implicitly rf_tx_power_set(TRANS_POWER_0_5DBM); ..\app\src\arch_main.c: 2 warnings, 0 errors -compiling app_sec.c... -compiling usr_server.c... compiling aes.c... compiling app_task.c... compiling xc_drv_adc.c... -compiling nvds.c... -compiling xc_drv_aotimer.c... compiling xc_gap_api.c... -compiling xc_drv_bor.c... -compiling xc_gatt_client_api.c... +compiling nvds.c... compiling xc_gatt_server_api.c... +compiling xc_gatt_client_api.c... +compiling xc_drv_bor.c... +compiling xc_drv_aotimer.c... compiling xc_drv_calib.c... -compiling xc_drv_clock.c... compiling xc_drv_dma.c... compiling xc_drv_fmc_spi_dma.c... +compiling xc_drv_clock.c... compiling xc_drv_fmc_spi.c... -compiling xc_drv_gpio.c... compiling xc_drv_i2c.c... +compiling xc_drv_gpio.c... compiling xc_drv_pga.c... compiling xc_drv_pwm.c... -compiling xc_drv_pwr.c... compiling xc_drv_qdec.c... +compiling xc_drv_pwr.c... compiling xc_drv_rtc.c... compiling xc_drv_spi.c... compiling xc_drv_spi_dma.c... compiling xc_drv_sw_i2c.c... compiling xc_drv_systick.c... +compiling xc_drv_uart_dma.c... compiling xc_drv_timer.c... compiling xc_drv_uart.c... -compiling xc_drv_uart_dma.c... compiling xc_drv_wdt.c... compiling timer.c... compiling uart_1.c... +compiling fmc_spi_1.c... compiling switch_s.c... compiling rf433.c... -compiling fmc_spi_1.c... +..\app\src\rf433.c(126): warning: #177-D: function "set_click" was declared but never referenced + static void set_click(void) +..\app\src\rf433.c: 1 warning, 0 errors compiling timeslice.c... compiling key.c... compiling led.c... compiling ota_flash_interface.c... +compiling rf433_decoder.c... compiling ota_server.c... compiling ota_protocol.c... ..\app\src\ota_protocol.c(149): warning: #550-D: variable "sw_ver" was set but never used @@ -86,35 +90,35 @@ compiling ota_protocol.c... ..\app\src\ota_protocol.c: 2 warnings, 0 errors linking... .\Linker\cpu_xip.scat(21): warning: L6329W: Pattern uread4.o(.text) only matches removed unused sections. -Program Size: Code=27376 RO-data=1600 RW-data=3008 ZI-data=3076 +Program Size: Code=28524 RO-data=1784 RW-data=3024 ZI-data=4192 Finished: 0 information, 1 warning and 0 error messages. After Build - User command #1: fromelf --bin --output=app.bin .\Objects\Xinc_ble_sdk.axf After Build - User command #2: .\output_tool\Double_ota\ge_ota.bat -Size of file: 29096 bytes. -all_size=29096 -size:29096 PageCNT114 +Size of file: 30432 bytes. +all_size=30432 +size:30432 PageCNT119 dual_xip -length:29448 -size:29448 +length:30728 +size:30728 Addr:12000 - Size:0x7200 + Size:0x7700 BAddr:0x12000 - Acheck:0x8569f200 + Acheck:0x23c95220 SoftVer:0x10 RomVer:0x20 LoadAddr:0x11012000 Is xip ota?:1 ota_data.bin successѸ 1 ļ -Size of file: 29096 bytes. -all_size=29096 -size:29096 PageCNT114 +Size of file: 30432 bytes. +all_size=30432 +size:30432 PageCNT119 dual_xip -length:29448 -size:29448 +length:30728 +size:30728 Addr:12000 - Size:0x7200 + Size:0x7700 BAddr:0x1e000 - Acheck:0x8569f200 + Acheck:0x23c95220 SoftVer:0x10 RomVer:0x20 LoadAddr:0x11012000 @@ -148,10 +152,10 @@ is_db=1 is_th=0 Ҫ0sector all_size:1a000 -size: 29096 +size: 30432 updata file success ! Ѹ 1 ļ -".\Objects\Xinc_ble_sdk.axf" - 0 Error(s), 5 Warning(s). +".\Objects\Xinc_ble_sdk.axf" - 0 Error(s), 6 Warning(s).

Software Packages used:

@@ -164,7 +168,7 @@ Package Vendor: ARM D:/Keil_v5/Packs/ARM/CMSIS/5.9.0/Device/ARM/ARMCM0/Include

Collection of Component Files used:

-Build Time Elapsed: 00:00:24 +Build Time Elapsed: 00:00:20 diff --git a/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.htm b/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.htm index e79ba69..5280b1e 100644 --- a/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.htm +++ b/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.htm @@ -3,7 +3,7 @@ Static Call Graph - [.\Objects\Xinc_ble_sdk.axf]

Static Call Graph for image .\Objects\Xinc_ble_sdk.axf


-

#<CALLGRAPH># ARM Linker, 5060960: Last Updated: Fri Jul 03 16:02:05 2026 +

#<CALLGRAPH># ARM Linker, 5060960: Last Updated: Thu Jul 09 18:43:35 2026

Maximum Stack Usage = 600 bytes + Unknown(Functions without stacksize, Untraceable Function Pointers)

Call chain for Maximum Stack Depth:

@@ -12,2908 +12,3016 @@ set_single_addr_name ⇒ xc_fmc_spi_flash_write_page ⇒ xc_fmc_spi_flash_

Functions with no stack information

Function Pointers

    -
  • AES_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • AOTIMER0_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • AOTIMER1_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • AUDIO_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • BLE_Handler from rom_symdefs.o(ABSOLUTE) referenced from startup_xinc.o(RESET) -
  • BusFault_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • CAN_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • CMP_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • CPR_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • DMA_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • DebugMon_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • FMC_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • GADC_Handler from xc_drv_adc.o(i.GADC_Handler) referenced from startup_xinc.o(RESET) -
  • GPIO_Handler from xc_drv_gpio.o(i.GPIO_Handler) referenced from startup_xinc.o(RESET) -
  • HardFault_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • I2C_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • I2S_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • MPU_Handler from xc_drv_bor.o(ram_code) referenced from startup_xinc.o(RESET) -
  • MemManage_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • NMI_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • PWM_Handler from xc_drv_pwm.o(i.PWM_Handler) referenced from startup_xinc.o(RESET) -
  • PendSV_Handler from arch_main.o(ram_code) referenced from startup_xinc.o(RESET) -
  • RF24G_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • RTC_Handler from xc_drv_rtc.o(ram_code) referenced from startup_xinc.o(RESET) -
  • Reset_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • SPI0_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • SPI1_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • SPI2_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • SVC_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • SysTick_Handler from xc_drv_systick.o(i.SysTick_Handler) referenced from startup_xinc.o(RESET) -
  • SystemInit from system_xinc.o(i.SystemInit) referenced from startup_xinc.o(.text) -
  • TIMER0_Handler from xc_drv_timer.o(i.TIMER0_Handler) referenced from startup_xinc.o(RESET) -
  • TIMER1_Handler from xc_drv_timer.o(i.TIMER1_Handler) referenced from startup_xinc.o(RESET) -
  • TIMER2_Handler from xc_drv_timer.o(i.TIMER2_Handler) referenced from startup_xinc.o(RESET) -
  • TIMER3_Handler from xc_drv_timer.o(i.TIMER3_Handler) referenced from startup_xinc.o(RESET) -
  • UART0_Handler from xc_drv_uart.o(i.UART0_Handler) referenced from startup_xinc.o(RESET) -
  • UART1_Handler from xc_drv_uart.o(i.UART1_Handler) referenced from startup_xinc.o(RESET) -
  • UART2_Handler from xc_drv_uart.o(i.UART2_Handler) referenced from startup_xinc.o(RESET) -
  • USB_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • UsageFault_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) -
  • WDT_Handler from xc_drv_wdt.o(i.WDT_Handler) referenced from startup_xinc.o(RESET) -
  • __main from __main.o(!!!main) referenced from startup_xinc.o(.text) -
  • _get_lc_ctype from lc_ctype_c.o(locale$$code) referenced from rt_ctype_table.o(.text) -
  • _printf_fp_dec_real from _printf_fp_dec.o(.text) referenced from printf1.o(x$fpl$printf1) -
  • _printf_fp_hex_real from _printf_fp_hex.o(.text) referenced from printf2.o(x$fpl$printf2) -
  • _printf_input_char from _printf_char_common.o(.text) referenced from _printf_char_common.o(.text) -
  • app_key_callback_handler from rf433.o(i.app_key_callback_handler) referenced from key.o(i.app_key_init) -
  • app_key_scan from key.o(i.app_key_scan) referenced 2 times from timeslice.o(.data) -
  • app_msg_handler from app_task.o(i.app_msg_handler) referenced from app_task.o(.constdata) -
  • app_op_flash from ota_flash_interface.o(i.app_op_flash) referenced 2 times from timeslice.o(.data) +
  • AES_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • AOTIMER0_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • AOTIMER1_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • AUDIO_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • BLE_Handler from rom_symdefs.o(ABSOLUTE) referenced from startup_xinc.o(RESET) +
  • BusFault_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • CAN_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • CMP_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • CPR_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • DMA_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • DebugMon_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • FMC_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • GADC_Handler from xc_drv_adc.o(i.GADC_Handler) referenced from startup_xinc.o(RESET) +
  • GPIO_Handler from xc_drv_gpio.o(i.GPIO_Handler) referenced from startup_xinc.o(RESET) +
  • HardFault_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • I2C_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • I2S_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • MPU_Handler from xc_drv_bor.o(ram_code) referenced from startup_xinc.o(RESET) +
  • MemManage_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • NMI_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • PWM_Handler from xc_drv_pwm.o(i.PWM_Handler) referenced from startup_xinc.o(RESET) +
  • PendSV_Handler from arch_main.o(ram_code) referenced from startup_xinc.o(RESET) +
  • RF24G_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • RTC_Handler from xc_drv_rtc.o(ram_code) referenced from startup_xinc.o(RESET) +
  • Reset_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • SPI0_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • SPI1_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • SPI2_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • SVC_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • SysTick_Handler from xc_drv_systick.o(i.SysTick_Handler) referenced from startup_xinc.o(RESET) +
  • SystemInit from system_xinc.o(i.SystemInit) referenced from startup_xinc.o(.text) +
  • TIMER0_Handler from xc_drv_timer.o(i.TIMER0_Handler) referenced from startup_xinc.o(RESET) +
  • TIMER1_Handler from xc_drv_timer.o(i.TIMER1_Handler) referenced from startup_xinc.o(RESET) +
  • TIMER2_Handler from xc_drv_timer.o(i.TIMER2_Handler) referenced from startup_xinc.o(RESET) +
  • TIMER3_Handler from xc_drv_timer.o(i.TIMER3_Handler) referenced from startup_xinc.o(RESET) +
  • UART0_Handler from xc_drv_uart.o(i.UART0_Handler) referenced from startup_xinc.o(RESET) +
  • UART1_Handler from xc_drv_uart.o(i.UART1_Handler) referenced from startup_xinc.o(RESET) +
  • UART2_Handler from xc_drv_uart.o(i.UART2_Handler) referenced from startup_xinc.o(RESET) +
  • USB_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • UsageFault_Handler from startup_xinc.o(.text) referenced from startup_xinc.o(RESET) +
  • WDT_Handler from xc_drv_wdt.o(i.WDT_Handler) referenced from startup_xinc.o(RESET) +
  • __main from __main.o(!!!main) referenced from startup_xinc.o(.text) +
  • _get_lc_ctype from lc_ctype_c.o(locale$$code) referenced from rt_ctype_table.o(.text) +
  • _printf_fp_dec_real from _printf_fp_dec.o(.text) referenced from printf1.o(x$fpl$printf1) +
  • _printf_fp_hex_real from _printf_fp_hex.o(.text) referenced from printf2.o(x$fpl$printf2) +
  • _printf_input_char from _printf_char_common.o(.text) referenced from _printf_char_common.o(.text) +
  • app_key_callback_handler from rf433.o(i.app_key_callback_handler) referenced from key.o(i.app_key_init) +
  • app_key_scan from key.o(i.app_key_scan) referenced 2 times from timeslice.o(.data) +
  • app_msg_handler from app_task.o(i.app_msg_handler) referenced from app_task.o(.constdata) +
  • app_op_flash from ota_flash_interface.o(i.app_op_flash) referenced 2 times from timeslice.o(.data)
  • app_op_flash_on from ota_flash_interface.o(i.app_op_flash_on) referenced 2 times from timeslice.o(.data) -
  • app_sec_msg_dflt_handler from app_sec.o(i.app_sec_msg_dflt_handler) referenced from app_sec.o(.constdata) +
  • app_sec_msg_dflt_handler from app_sec.o(i.app_sec_msg_dflt_handler) referenced from app_sec.o(.constdata)
  • ble_message_process from uart_1.o(i.ble_message_process) referenced 2 times from timeslice.o(.data) -
  • ble_mode_scan from rf433.o(i.ble_mode_scan) referenced 2 times from timeslice.o(.data) -
  • custom_svc_cb_att_read_get from usr_server.o(i.custom_svc_cb_att_read_get) referenced from usr_server.o(.constdata) -
  • custom_svc_cb_att_val_set from usr_server.o(i.custom_svc_cb_att_val_set) referenced from usr_server.o(.constdata) -
  • custom_svc_cb_event_sent from usr_server.o(i.custom_svc_cb_event_sent) referenced from usr_server.o(.constdata) -
  • fputc from system_xinc.o(ram_code) referenced from _printf_char_file.o(.text) -
  • gapc_bond_ind_handler from app_sec.o(i.gapc_bond_ind_handler) referenced from app_sec.o(.constdata) -
  • gapc_bond_req_ind_handler from app_sec.o(i.gapc_bond_req_ind_handler) referenced from app_sec.o(.constdata) -
  • gapc_encrypt_ind_handler from app_sec.o(i.gapc_encrypt_ind_handler) referenced from app_sec.o(.constdata) -
  • gapc_encrypt_req_ind_handler from app_sec.o(i.gapc_encrypt_req_ind_handler) referenced from app_sec.o(.constdata) -
  • nvds_erase from nvds.o(i.nvds_erase) referenced from nvds.o(i.nvds_init) -
  • nvds_read from nvds.o(i.nvds_read) referenced from nvds.o(i.nvds_init) -
  • nvds_write from nvds.o(i.nvds_write) referenced from nvds.o(i.nvds_init) -
  • printf from printf.o(.text) referenced from arch_main.o(i.rom_env_host_init) -
  • rf_rssi_convert from arch_main.o(ram_code) referenced from arch_main.o(i.bluetooth_init) +
  • ble_mode_scan from rf433.o(i.ble_mode_scan) referenced 2 times from timeslice.o(.data) +
  • custom_svc_cb_att_read_get from usr_server.o(i.custom_svc_cb_att_read_get) referenced from usr_server.o(.constdata) +
  • custom_svc_cb_att_val_set from usr_server.o(i.custom_svc_cb_att_val_set) referenced from usr_server.o(.constdata) +
  • custom_svc_cb_event_sent from usr_server.o(i.custom_svc_cb_event_sent) referenced from usr_server.o(.constdata) +
  • fputc from system_xinc.o(ram_code) referenced from _printf_char_file.o(.text) +
  • gapc_bond_ind_handler from app_sec.o(i.gapc_bond_ind_handler) referenced from app_sec.o(.constdata) +
  • gapc_bond_req_ind_handler from app_sec.o(i.gapc_bond_req_ind_handler) referenced from app_sec.o(.constdata) +
  • gapc_encrypt_ind_handler from app_sec.o(i.gapc_encrypt_ind_handler) referenced from app_sec.o(.constdata) +
  • gapc_encrypt_req_ind_handler from app_sec.o(i.gapc_encrypt_req_ind_handler) referenced from app_sec.o(.constdata) +
  • nvds_erase from nvds.o(i.nvds_erase) referenced from nvds.o(i.nvds_init) +
  • nvds_read from nvds.o(i.nvds_read) referenced from nvds.o(i.nvds_init) +
  • nvds_write from nvds.o(i.nvds_write) referenced from nvds.o(i.nvds_init) +
  • printf from printf.o(.text) referenced from arch_main.o(i.rom_env_host_init) +
  • rf433_decoder_process from rf433_decoder.o(i.rf433_decoder_process) referenced 2 times from timeslice.o(.data) +
  • rf_rssi_convert from arch_main.o(ram_code) referenced from arch_main.o(i.bluetooth_init)
  • scan_433 from rf433.o(i.scan_433) referenced 2 times from timeslice.o(.data) -
  • set_single_addr_name from arch_main.o(i.set_single_addr_name) referenced from arch_main.o(i.rom_env_host_init) +
  • set_single_addr_name from arch_main.o(i.set_single_addr_name) referenced from arch_main.o(i.rom_env_host_init)
  • timer0_callback from timer.o(ram_code) referenced 2 times from xc_drv_timer.o(.data)
  • timer1_callback from timer.o(ram_code) referenced 2 times from xc_drv_timer.o(.data)
  • timer2_callback from timer.o(ram_code) referenced 2 times from xc_drv_timer.o(.data)
  • timer3_callback from xc_drv_timer.o(i.timer3_callback) referenced 2 times from xc_drv_timer.o(.data) -
  • trigger_check_process from switch_s.o(i.trigger_check_process) referenced 2 times from timeslice.o(.data) -
  • xc_ota_schedule from ota_protocol.o(i.xc_ota_schedule) referenced 2 times from timeslice.o(.data) +
  • trigger_check_process from switch_s.o(i.trigger_check_process) referenced 2 times from timeslice.o(.data) +
  • xc_ota_schedule from ota_protocol.o(i.xc_ota_schedule) referenced 2 times from timeslice.o(.data)

Global Symbols

-

BLE_Handler (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED) +

BLE_Handler (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED)
[Address Reference Count : 1]

  • startup_xinc.o(RESET)
-

co_buf_alloc (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED) +

co_buf_alloc (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED)

[Called By]

    -

    co_buf_copy_data_from_mem (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED) +

    co_buf_copy_data_from_mem (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED)

    [Called By]

      -

      co_buf_release (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED) +

      co_buf_release (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED)

      [Called By]

        -

        ke_msg_alloc (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

        [Called By]

        • >>   xc_ble_activity_delete (via Veneer) -
        • >>   gapc_get_device_info_req_ind (via Veneer) -
        • >>   gapc_encrypt_req_ind_handler (via Veneer) -
        • >>   gapc_bond_req_ind_handler (via Veneer) +

          ke_msg_alloc (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

          [Called By]

          • >>   xc_ble_activity_delete (via Veneer) +
          • >>   gapc_get_device_info_req_ind (via Veneer) +
          • >>   gapc_encrypt_req_ind_handler (via Veneer) +
          • >>   gapc_bond_req_ind_handler (via Veneer)
          -

          ke_msg_send (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

          [Called By]

          • >>   xc_ble_activity_delete (via Veneer) -
          • >>   gapc_encrypt_req_ind_handler (via Veneer) -
          • >>   gapc_bond_req_ind_handler (via Veneer) +

            ke_msg_send (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

            [Called By]

            • >>   xc_ble_activity_delete (via Veneer) +
            • >>   gapc_encrypt_req_ind_handler (via Veneer) +
            • >>   gapc_bond_req_ind_handler (via Veneer)
            -

            ke_state_get (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

            [Called By]

            • >>   gapm_callback (via Veneer) +

              ke_state_get (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

              [Called By]

              • >>   gapm_callback (via Veneer)
              -

              ke_state_set (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

              [Called By]

              • >>   app_init (via Veneer) +

                ke_state_set (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                [Called By]

                • >>   app_init (via Veneer)
                -

                ke_task_create (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                [Called By]

                • >>   app_init (via Veneer) +

                  ke_task_create (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                  [Called By]

                  • >>   app_init (via Veneer)
                  -

                  rwip_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                  [Called By]

                  • >>   bluetooth_init (via Veneer) +

                    rwip_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                    [Called By]

                    • >>   bluetooth_init (via Veneer)
                    -

                    rwip_schedule (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                    [Called By]

                    • >>   main (via Veneer) +

                      rwip_schedule (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                      [Called By]

                      • >>   main (via Veneer)
                      -

                      rwip_time_get (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                      [Called By]

                      • >>   bluetooth_init (via Veneer) +

                        rwip_time_get (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                        [Called By]

                        • >>   bluetooth_init (via Veneer)
                        -

                        FMC_SPI_Flash_PowerDown (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED) +

                        FMC_SPI_Flash_PowerDown (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED)

                        [Called By]

                          -

                          FMC_SPI_Flash_WakeUp (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                          [Called By]

                          • >>   MPU_Handler (via Veneer) +

                            FMC_SPI_Flash_WakeUp (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                            [Called By]

                            • >>   MPU_Handler (via Veneer)
                            -

                            FMC_SPI_Flash_Erase_Sector (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                            [Called By]

                            • >>   ble_flash_handle (via Veneer) +

                              FMC_SPI_Flash_Erase_Sector (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                              [Called By]

                              • >>   ble_flash_handle (via Veneer)
                              -

                              FMC_SPI_FlashWrite (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                              [Called By]

                              • >>   nvds_write (via Veneer) +

                                FMC_SPI_FlashWrite (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                [Called By]

                                • >>   nvds_write (via Veneer)
                                -

                                FMC_SPI_FlashRead (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                [Called By]

                                • >>   nvds_read (via Veneer) +

                                  FMC_SPI_FlashRead (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                  [Called By]

                                  • >>   nvds_read (via Veneer)
                                  -

                                  rom_xc_fmc_spi_flash_erase_page (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                  [Called By]

                                  • >>   nvds_erase (via Veneer) +

                                    rom_xc_fmc_spi_flash_erase_page (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                    [Called By]

                                    • >>   nvds_erase (via Veneer)
                                    -

                                    _memset_w (Thumb, 26 bytes, Stack size 0 bytes, rt_memclr.o(.text)) -

                                    [Called By]

                                    • >>   __rt_memclr_w -
                                    • >>   _memset +

                                      _memset_w (Thumb, 26 bytes, Stack size 0 bytes, rt_memclr.o(.text)) +

                                      [Called By]

                                      • >>   __rt_memclr_w +
                                      • >>   _memset
                                      -

                                      _memset (Thumb, 30 bytes, Stack size 0 bytes, rt_memclr.o(.text)) -

                                      [Calls]

                                      • >>   _memset_w +

                                        _memset (Thumb, 30 bytes, Stack size 0 bytes, rt_memclr.o(.text)) +

                                        [Calls]

                                        • >>   _memset_w
                                        -
                                        [Called By]
                                        • >>   __aeabi_memclr -
                                        • >>   __aeabi_memset (via Veneer) +
                                          [Called By]
                                          • >>   __aeabi_memclr +
                                          • >>   __aeabi_memset (via Veneer)
                                          -

                                          __aeabi_memclr (Thumb, 4 bytes, Stack size 0 bytes, rt_memclr.o(.text)) -

                                          [Calls]

                                          • >>   _memset +

                                            __aeabi_memclr (Thumb, 4 bytes, Stack size 0 bytes, rt_memclr.o(.text)) +

                                            [Calls]

                                            • >>   _memset
                                            -
                                            [Called By]
                                            • >>   app_init (via Veneer) -
                                            • >>   gapc_bond_req_ind_handler (via Veneer) -
                                            • >>   flash_init (via Veneer) +
                                              [Called By]
                                              • >>   app_init (via Veneer) +
                                              • >>   gapc_bond_req_ind_handler (via Veneer) +
                                              • >>   flash_init (via Veneer)
                                              • >>   scan_433 (via Veneer)
                                              -

                                              __rt_memclr (Thumb, 0 bytes, Stack size 0 bytes, rt_memclr.o(.text), UNUSED) +

                                              __rt_memclr (Thumb, 0 bytes, Stack size 0 bytes, rt_memclr.o(.text), UNUSED) -

                                              __aeabi_memclr4 (Thumb, 0 bytes, Stack size 0 bytes, rt_memclr.o(.text)) -

                                              [Called By]

                                              • >>   app_start_advertising (via Veneer) -
                                              • >>   app_set_adv_data (via Veneer) -
                                              • >>   app_create_advertising (via Veneer) -
                                              • >>   gapc_callback (via Veneer) -
                                              • >>   xc_fmc_spi_flash_read -
                                              • >>   xc_fmc_spi_flash_read_page -
                                              • >>   xc_fmc_spi_otp_read_page -
                                              • >>   xc_fmc_spi_flash_ruid -
                                              • >>   rom_env_host_init (via Veneer) +

                                                __aeabi_memclr4 (Thumb, 0 bytes, Stack size 0 bytes, rt_memclr.o(.text)) +

                                                [Called By]

                                                • >>   app_start_advertising (via Veneer) +
                                                • >>   app_set_adv_data (via Veneer) +
                                                • >>   app_create_advertising (via Veneer) +
                                                • >>   gapc_callback (via Veneer) +
                                                • >>   xc_fmc_spi_flash_read +
                                                • >>   xc_fmc_spi_flash_read_page +
                                                • >>   xc_fmc_spi_otp_read_page +
                                                • >>   xc_fmc_spi_flash_ruid +
                                                • >>   rom_env_host_init (via Veneer)
                                                • >>   scan_433 (via Veneer)
                                                -

                                                __aeabi_memclr8 (Thumb, 0 bytes, Stack size 0 bytes, rt_memclr.o(.text), UNUSED) +

                                                __aeabi_memclr8 (Thumb, 0 bytes, Stack size 0 bytes, rt_memclr.o(.text), UNUSED) -

                                                __rt_memclr_w (Thumb, 4 bytes, Stack size 0 bytes, rt_memclr.o(.text), UNUSED) -

                                                [Calls]

                                                • >>   _memset_w +

                                                  __rt_memclr_w (Thumb, 4 bytes, Stack size 0 bytes, rt_memclr.o(.text), UNUSED) +

                                                  [Calls]

                                                  • >>   _memset_w
                                                  -

                                                  __aeabi_uidiv (Thumb, 0 bytes, Stack size 0 bytes, aeabi_sdiv.o(.text), UNUSED) +

                                                  __aeabi_uidiv (Thumb, 0 bytes, Stack size 0 bytes, aeabi_sdiv.o(.text), UNUSED) -

                                                  __aeabi_uidivmod (Thumb, 20 bytes, Stack size 0 bytes, aeabi_sdiv.o(.text)) -

                                                  [Called By]

                                                  • >>   pwm_freq_to_period (via Veneer) -
                                                  • >>   xc_clock_hfclk_set (via Veneer) -
                                                  • >>   gapc_bond_req_ind_handler (via Veneer) -
                                                  • >>   xc_uart_init (via Veneer) -
                                                  • >>   clock_init (via Veneer) -
                                                  • >>   xc_adc_data_average (via Veneer) +

                                                    __aeabi_uidivmod (Thumb, 20 bytes, Stack size 0 bytes, aeabi_sdiv.o(.text)) +

                                                    [Called By]

                                                    • >>   pwm_freq_to_period (via Veneer) +
                                                    • >>   xc_clock_hfclk_set (via Veneer) +
                                                    • >>   gapc_bond_req_ind_handler (via Veneer) +
                                                    • >>   xc_uart_init (via Veneer) +
                                                    • >>   clock_init (via Veneer) +
                                                    • >>   xc_adc_data_average (via Veneer) +
                                                    • >>   rf433_process_clean_pulse (via Veneer)
                                                    -

                                                    __aeabi_idiv (Thumb, 0 bytes, Stack size 8 bytes, aeabi_sdiv.o(.text), UNUSED) +

                                                    __aeabi_idiv (Thumb, 0 bytes, Stack size 8 bytes, aeabi_sdiv.o(.text), UNUSED) -

                                                    __aeabi_idivmod (Thumb, 326 bytes, Stack size 8 bytes, aeabi_sdiv.o(.text)) +

                                                    __aeabi_idivmod (Thumb, 326 bytes, Stack size 8 bytes, aeabi_sdiv.o(.text))

                                                    [Stack]

                                                    • Max Depth = 8
                                                    • Call Chain = __aeabi_idivmod
                                                    -
                                                    [Called By]
                                                    • >>   flash_init (via Veneer) -
                                                    • >>   _btod_etento (via Veneer) -
                                                    • >>   _printf_fp_hex_real (via Veneer) +
                                                      [Called By]
                                                      • >>   flash_init (via Veneer) +
                                                      • >>   _btod_etento (via Veneer) +
                                                      • >>   _printf_fp_hex_real (via Veneer)
                                                      -

                                                      sendchar (Thumb, 18 bytes, Stack size 0 bytes, system_xinc.o(ram_code)) -

                                                      [Called By]

                                                      • >>   fputc +

                                                        sendchar (Thumb, 18 bytes, Stack size 0 bytes, system_xinc.o(ram_code)) +

                                                        [Called By]

                                                        • >>   fputc
                                                        -

                                                        fputc (Thumb, 2 bytes, Stack size 0 bytes, system_xinc.o(ram_code)) -

                                                        [Calls]

                                                        • >>   sendchar +

                                                          fputc (Thumb, 2 bytes, Stack size 0 bytes, system_xinc.o(ram_code)) +

                                                          [Calls]

                                                          • >>   sendchar

                                                          [Address Reference Count : 1]
                                                          • _printf_char_file.o(.text)
                                                          -

                                                          rf_rssi_convert (Thumb, 14 bytes, Stack size 0 bytes, arch_main.o(ram_code)) +

                                                          rf_rssi_convert (Thumb, 14 bytes, Stack size 0 bytes, arch_main.o(ram_code))
                                                          [Address Reference Count : 1]

                                                          • arch_main.o(i.bluetooth_init)
                                                          -

                                                          PendSV_Handler (Thumb, 34 bytes, Stack size 0 bytes, arch_main.o(ram_code)) +

                                                          PendSV_Handler (Thumb, 34 bytes, Stack size 0 bytes, arch_main.o(ram_code))
                                                          [Address Reference Count : 1]

                                                          • startup_xinc.o(RESET)
                                                          -

                                                          MPU_Handler (Thumb, 170 bytes, Stack size 16 bytes, xc_drv_bor.o(ram_code)) +

                                                          MPU_Handler (Thumb, 170 bytes, Stack size 16 bytes, xc_drv_bor.o(ram_code))

                                                          [Stack]

                                                          • Max Depth = 16
                                                          • Call Chain = MPU_Handler
                                                          -
                                                          [Calls]
                                                          • >>   FMC_SPI_Flash_WakeUp (via Veneer) +
                                                            [Calls]
                                                            • >>   FMC_SPI_Flash_WakeUp (via Veneer)

                                                            [Address Reference Count : 1]
                                                            • startup_xinc.o(RESET)
                                                            -

                                                            xc_fmc_spi_init_oprt (Thumb, 138 bytes, Stack size 8 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                            xc_fmc_spi_init_oprt (Thumb, 138 bytes, Stack size 8 bytes, xc_drv_fmc_spi.o(ram_code))

                                                            [Stack]

                                                            • Max Depth = 8
                                                            • Call Chain = xc_fmc_spi_init_oprt
                                                            -
                                                            [Calls]
                                                            • >>   xc_fmc_status_wait_idle +
                                                              [Calls]
                                                              • >>   xc_fmc_status_wait_idle
                                                              -
                                                              [Called By]
                                                              • >>   xc_unique_identification_read (via Veneer) -
                                                              • >>   flash_size_and_type_get (via Veneer) -
                                                              • >>   flash_init (via Veneer) +
                                                                [Called By]
                                                                • >>   xc_unique_identification_read (via Veneer) +
                                                                • >>   flash_size_and_type_get (via Veneer) +
                                                                • >>   flash_init (via Veneer)
                                                                -

                                                                xc_fmc_spi_flash_wake_up (Thumb, 40 bytes, Stack size 8 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                xc_fmc_spi_flash_wake_up (Thumb, 40 bytes, Stack size 8 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                [Stack]

                                                                • Max Depth = 28
                                                                • Call Chain = xc_fmc_spi_flash_wake_up ⇒ xc_fmc_spi_write_nbyte
                                                                -
                                                                [Calls]
                                                                • >>   xc_fmc_spi_disable -
                                                                • >>   xc_fmc_spi_enable -
                                                                • >>   xc_fmc_status_wait_idle -
                                                                • >>   xc_fmc_spi_write_nbyte +
                                                                  [Calls]
                                                                  • >>   xc_fmc_spi_disable +
                                                                  • >>   xc_fmc_spi_enable +
                                                                  • >>   xc_fmc_status_wait_idle +
                                                                  • >>   xc_fmc_spi_write_nbyte
                                                                  -
                                                                  [Called By]
                                                                  • >>   xc_unique_identification_read (via Veneer) -
                                                                  • >>   flash_size_and_type_get (via Veneer) -
                                                                  • >>   flash_init (via Veneer) +
                                                                    [Called By]
                                                                    • >>   xc_unique_identification_read (via Veneer) +
                                                                    • >>   flash_size_and_type_get (via Veneer) +
                                                                    • >>   flash_init (via Veneer)
                                                                    -

                                                                    xc_fmc_spi_flash_erase_page (Thumb, 80 bytes, Stack size 16 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                    xc_fmc_spi_flash_erase_page (Thumb, 80 bytes, Stack size 16 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                    [Stack]

                                                                    • Max Depth = 64
                                                                    • Call Chain = xc_fmc_spi_flash_erase_page ⇒ xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                    -
                                                                    [Calls]
                                                                    • >>   xc_fmc_spi_disable -
                                                                    • >>   xc_fmc_spi_enable -
                                                                    • >>   xc_fmc_status_wait_idle -
                                                                    • >>   xc_fmc_spi_flash_write_enable -
                                                                    • >>   xc_fmc_spi_flash_wait_busy -
                                                                    • >>   xc_fmc_spi_write_nbyte +
                                                                      [Calls]
                                                                      • >>   xc_fmc_spi_disable +
                                                                      • >>   xc_fmc_spi_enable +
                                                                      • >>   xc_fmc_status_wait_idle +
                                                                      • >>   xc_fmc_spi_flash_write_enable +
                                                                      • >>   xc_fmc_spi_flash_wait_busy +
                                                                      • >>   xc_fmc_spi_write_nbyte
                                                                      -
                                                                      [Called By]
                                                                      • >>   set_single_addr_name (via Veneer) -
                                                                      • >>   ble_flash_handle (via Veneer) +
                                                                        [Called By]
                                                                        • >>   set_single_addr_name (via Veneer) +
                                                                        • >>   ble_flash_handle (via Veneer)
                                                                        -

                                                                        xc_fmc_spi_flash_write_page (Thumb, 104 bytes, Stack size 280 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                        xc_fmc_spi_flash_write_page (Thumb, 104 bytes, Stack size 280 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                        [Stack]

                                                                        • Max Depth = 328
                                                                        • Call Chain = xc_fmc_spi_flash_write_page ⇒ xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                        -
                                                                        [Calls]
                                                                        • >>   xc_fmc_spi_disable -
                                                                        • >>   xc_fmc_spi_enable -
                                                                        • >>   xc_fmc_status_wait_idle -
                                                                        • >>   xc_fmc_spi_flash_write_enable -
                                                                        • >>   xc_fmc_spi_flash_wait_busy -
                                                                        • >>   xc_fmc_spi_write_nbyte -
                                                                        • >>   ram_memcpy_bytes +
                                                                          [Calls]
                                                                          • >>   xc_fmc_spi_disable +
                                                                          • >>   xc_fmc_spi_enable +
                                                                          • >>   xc_fmc_status_wait_idle +
                                                                          • >>   xc_fmc_spi_flash_write_enable +
                                                                          • >>   xc_fmc_spi_flash_wait_busy +
                                                                          • >>   xc_fmc_spi_write_nbyte +
                                                                          • >>   ram_memcpy_bytes
                                                                          -
                                                                          [Called By]
                                                                          • >>   set_single_addr_name (via Veneer) -
                                                                          • >>   ble_flash_handle (via Veneer) +
                                                                            [Called By]
                                                                            • >>   set_single_addr_name (via Veneer) +
                                                                            • >>   ble_flash_handle (via Veneer)
                                                                            -

                                                                            xc_fmc_spi_otp_read_page (Thumb, 166 bytes, Stack size 344 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                            xc_fmc_spi_otp_read_page (Thumb, 166 bytes, Stack size 344 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                            [Stack]

                                                                            • Max Depth = 368
                                                                            • Call Chain = xc_fmc_spi_otp_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                            -
                                                                            [Calls]
                                                                            • >>   xc_fmc_spi_disable -
                                                                            • >>   xc_fmc_spi_enable -
                                                                            • >>   xc_fmc_status_wait_idle -
                                                                            • >>   xc_fmc_spi_read_nbyte -
                                                                            • >>   xc_fmc_spi_write_nbyte -
                                                                            • >>   ram_memcpy_bytes -
                                                                            • >>   __aeabi_memclr4 +
                                                                              [Calls]
                                                                              • >>   xc_fmc_spi_disable +
                                                                              • >>   xc_fmc_spi_enable +
                                                                              • >>   xc_fmc_status_wait_idle +
                                                                              • >>   xc_fmc_spi_read_nbyte +
                                                                              • >>   xc_fmc_spi_write_nbyte +
                                                                              • >>   ram_memcpy_bytes +
                                                                              • >>   __aeabi_memclr4
                                                                              -
                                                                              [Called By]
                                                                              • >>   xc_unique_identification_read (via Veneer) +
                                                                                [Called By]
                                                                                • >>   xc_unique_identification_read (via Veneer)
                                                                                -

                                                                                xc_fmc_spi_flash_read_page (Thumb, 126 bytes, Stack size 72 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                xc_fmc_spi_flash_read_page (Thumb, 126 bytes, Stack size 72 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                [Stack]

                                                                                • Max Depth = 96
                                                                                • Call Chain = xc_fmc_spi_flash_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                                -
                                                                                [Calls]
                                                                                • >>   xc_fmc_spi_disable -
                                                                                • >>   xc_fmc_spi_enable -
                                                                                • >>   xc_fmc_status_wait_idle -
                                                                                • >>   xc_fmc_spi_read_nbyte -
                                                                                • >>   xc_fmc_spi_write_nbyte -
                                                                                • >>   ram_memcpy_bytes -
                                                                                • >>   __aeabi_memclr4 +
                                                                                  [Calls]
                                                                                  • >>   xc_fmc_spi_disable +
                                                                                  • >>   xc_fmc_spi_enable +
                                                                                  • >>   xc_fmc_status_wait_idle +
                                                                                  • >>   xc_fmc_spi_read_nbyte +
                                                                                  • >>   xc_fmc_spi_write_nbyte +
                                                                                  • >>   ram_memcpy_bytes +
                                                                                  • >>   __aeabi_memclr4
                                                                                  -
                                                                                  [Called By]
                                                                                  • >>   xc_fmc_spi_flash_read -
                                                                                  • >>   fmc_spi_read (via Veneer) +
                                                                                    [Called By]
                                                                                    • >>   xc_fmc_spi_flash_read +
                                                                                    • >>   fmc_spi_read (via Veneer)
                                                                                    -

                                                                                    xc_fmc_spi_flash_read (Thumb, 142 bytes, Stack size 296 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                    xc_fmc_spi_flash_read (Thumb, 142 bytes, Stack size 296 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                    [Stack]

                                                                                    • Max Depth = 392
                                                                                    • Call Chain = xc_fmc_spi_flash_read ⇒ xc_fmc_spi_flash_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                                    -
                                                                                    [Calls]
                                                                                    • >>   xc_fmc_spi_flash_read_page -
                                                                                    • >>   ram_memcpy_bytes -
                                                                                    • >>   __aeabi_memclr4 +
                                                                                      [Calls]
                                                                                      • >>   xc_fmc_spi_flash_read_page +
                                                                                      • >>   ram_memcpy_bytes +
                                                                                      • >>   __aeabi_memclr4
                                                                                      -
                                                                                      [Called By]
                                                                                      • >>   xc_unique_identification_read (via Veneer) +
                                                                                        [Called By]
                                                                                        • >>   xc_unique_identification_read (via Veneer)
                                                                                        -

                                                                                        xc_fmc_spi_flash_ruid (Thumb, 104 bytes, Stack size 64 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                        xc_fmc_spi_flash_ruid (Thumb, 104 bytes, Stack size 64 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                        [Stack]

                                                                                        • Max Depth = 112
                                                                                        • Call Chain = xc_fmc_spi_flash_ruid ⇒ xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                                        -
                                                                                        [Calls]
                                                                                        • >>   xc_fmc_spi_disable -
                                                                                        • >>   xc_fmc_spi_enable -
                                                                                        • >>   xc_fmc_status_wait_idle -
                                                                                        • >>   xc_fmc_spi_flash_wait_busy -
                                                                                        • >>   xc_fmc_spi_read_nbyte -
                                                                                        • >>   xc_fmc_spi_write_nbyte -
                                                                                        • >>   ram_memcpy_bytes -
                                                                                        • >>   __aeabi_memclr4 +
                                                                                          [Calls]
                                                                                          • >>   xc_fmc_spi_disable +
                                                                                          • >>   xc_fmc_spi_enable +
                                                                                          • >>   xc_fmc_status_wait_idle +
                                                                                          • >>   xc_fmc_spi_flash_wait_busy +
                                                                                          • >>   xc_fmc_spi_read_nbyte +
                                                                                          • >>   xc_fmc_spi_write_nbyte +
                                                                                          • >>   ram_memcpy_bytes +
                                                                                          • >>   __aeabi_memclr4
                                                                                          -
                                                                                          [Called By]
                                                                                          • >>   flash_init (via Veneer) +
                                                                                            [Called By]
                                                                                            • >>   flash_init (via Veneer)
                                                                                            -

                                                                                            xc_fmc_spi_flash_rdid (Thumb, 86 bytes, Stack size 24 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                            xc_fmc_spi_flash_rdid (Thumb, 86 bytes, Stack size 24 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                            [Stack]

                                                                                            • Max Depth = 72
                                                                                            • Call Chain = xc_fmc_spi_flash_rdid ⇒ xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                                            -
                                                                                            [Calls]
                                                                                            • >>   xc_fmc_spi_disable -
                                                                                            • >>   xc_fmc_spi_enable -
                                                                                            • >>   xc_fmc_status_wait_idle -
                                                                                            • >>   xc_fmc_spi_flash_wait_busy -
                                                                                            • >>   xc_fmc_spi_read_nbyte -
                                                                                            • >>   xc_fmc_spi_write_nbyte -
                                                                                            • >>   ram_memcpy_bytes +
                                                                                              [Calls]
                                                                                              • >>   xc_fmc_spi_disable +
                                                                                              • >>   xc_fmc_spi_enable +
                                                                                              • >>   xc_fmc_status_wait_idle +
                                                                                              • >>   xc_fmc_spi_flash_wait_busy +
                                                                                              • >>   xc_fmc_spi_read_nbyte +
                                                                                              • >>   xc_fmc_spi_write_nbyte +
                                                                                              • >>   ram_memcpy_bytes
                                                                                              -
                                                                                              [Called By]
                                                                                              • >>   flash_size_and_type_get (via Veneer) -
                                                                                              • >>   set_single_addr_name (via Veneer) -
                                                                                              • >>   flash_init (via Veneer) +
                                                                                                [Called By]
                                                                                                • >>   flash_size_and_type_get (via Veneer) +
                                                                                                • >>   set_single_addr_name (via Veneer) +
                                                                                                • >>   flash_init (via Veneer)
                                                                                                -

                                                                                                RTC_Handler (Thumb, 40 bytes, Stack size 8 bytes, xc_drv_rtc.o(ram_code)) +

                                                                                                RTC_Handler (Thumb, 40 bytes, Stack size 8 bytes, xc_drv_rtc.o(ram_code))

                                                                                                [Stack]

                                                                                                • Max Depth = 52
                                                                                                • Call Chain = RTC_Handler ⇒ xc_rc32k_soft_calib_set ⇒ __aeabi_fdiv
                                                                                                -
                                                                                                [Calls]
                                                                                                • >>   xc_rc32k_soft_calib_set (via Veneer) +
                                                                                                  [Calls]
                                                                                                  • >>   xc_rc32k_soft_calib_set (via Veneer)

                                                                                                  [Address Reference Count : 1]
                                                                                                  • startup_xinc.o(RESET)

                                                                                                  timer0_callback (Thumb, 118 bytes, Stack size 16 bytes, timer.o(ram_code))

                                                                                                  [Stack]

                                                                                                  • Max Depth = 44
                                                                                                  • Call Chain = timer0_callback ⇒ pwm3_toggle ⇒ xc_pwm_dutycycle_set
                                                                                                  -
                                                                                                  [Calls]
                                                                                                  • >>   xc_pwm_dutycycle_set (via Veneer) -
                                                                                                  • >>   pwm3_toggle (via Veneer) +
                                                                                                    [Calls]
                                                                                                    • >>   xc_pwm_dutycycle_set (via Veneer) +
                                                                                                    • >>   pwm3_toggle (via Veneer)

                                                                                                    [Address Reference Count : 1]
                                                                                                    • xc_drv_timer.o(.data)

                                                                                                    timer1_callback (Thumb, 24 bytes, Stack size 8 bytes, timer.o(ram_code))

                                                                                                    [Stack]

                                                                                                    • Max Depth = 20
                                                                                                    • Call Chain = timer1_callback ⇒ TaskRemarks
                                                                                                    -
                                                                                                    [Calls]
                                                                                                    • >>   TaskRemarks (via Veneer) -
                                                                                                    • >>   updateTimer (via Veneer) +
                                                                                                      [Calls]
                                                                                                      • >>   TaskRemarks (via Veneer) +
                                                                                                      • >>   updateTimer (via Veneer)

                                                                                                      [Address Reference Count : 1]
                                                                                                      • xc_drv_timer.o(.data)
                                                                                                      -

                                                                                                      timer2_callback (Thumb, 8 bytes, Stack size 8 bytes, timer.o(ram_code)) -

                                                                                                      [Stack]

                                                                                                      • Max Depth = 32
                                                                                                      • Call Chain = timer2_callback ⇒ rf433_receive +

                                                                                                        timer2_callback (Thumb, 16 bytes, Stack size 8 bytes, timer.o(ram_code)) +

                                                                                                        [Stack]

                                                                                                        • Max Depth = 28
                                                                                                        • Call Chain = timer2_callback ⇒ rf433_decoder_sample
                                                                                                        -
                                                                                                        [Calls]
                                                                                                        • >>   rf433_receive (via Veneer) +
                                                                                                          [Calls]
                                                                                                          • >>   xc_gpio_read_pin (via Veneer) +
                                                                                                          • >>   rf433_decoder_sample (via Veneer)

                                                                                                          [Address Reference Count : 1]
                                                                                                          • xc_drv_timer.o(.data)
                                                                                                          -

                                                                                                          app_key_hold_detection (Thumb, 52 bytes, Stack size 16 bytes, key.o(ram_code)) +

                                                                                                          app_key_hold_detection (Thumb, 52 bytes, Stack size 16 bytes, key.o(ram_code))

                                                                                                          [Stack]

                                                                                                          • Max Depth = 16
                                                                                                          • Call Chain = app_key_hold_detection
                                                                                                          -
                                                                                                          [Calls]
                                                                                                          • >>   key_click_state_reset (via Veneer) +
                                                                                                            [Calls]
                                                                                                            • >>   key_click_state_reset (via Veneer)
                                                                                                            -
                                                                                                            [Called By]
                                                                                                            • >>   key_check_process +
                                                                                                              [Called By]
                                                                                                              • >>   key_check_process
                                                                                                              -

                                                                                                              app_new_key_detection (Thumb, 114 bytes, Stack size 24 bytes, key.o(ram_code)) +

                                                                                                              app_new_key_detection (Thumb, 114 bytes, Stack size 24 bytes, key.o(ram_code))

                                                                                                              [Stack]

                                                                                                              • Max Depth = 48
                                                                                                              • Call Chain = app_new_key_detection ⇒ app_key_click_detection
                                                                                                              -
                                                                                                              [Calls]
                                                                                                              • >>   key_click_state_reset (via Veneer) -
                                                                                                              • >>   app_key_click_detection (via Veneer) +
                                                                                                                [Calls]
                                                                                                                • >>   key_click_state_reset (via Veneer) +
                                                                                                                • >>   app_key_click_detection (via Veneer)
                                                                                                                -
                                                                                                                [Called By]
                                                                                                                • >>   key_check_process +
                                                                                                                  [Called By]
                                                                                                                  • >>   key_check_process
                                                                                                                  -

                                                                                                                  key_check_process (Thumb, 30 bytes, Stack size 0 bytes, key.o(ram_code)) +

                                                                                                                  key_check_process (Thumb, 30 bytes, Stack size 0 bytes, key.o(ram_code))

                                                                                                                  [Stack]

                                                                                                                  • Max Depth = 48
                                                                                                                  • Call Chain = key_check_process ⇒ app_new_key_detection ⇒ app_key_click_detection
                                                                                                                  -
                                                                                                                  [Calls]
                                                                                                                  • >>   app_new_key_detection -
                                                                                                                  • >>   app_key_hold_detection +
                                                                                                                    [Calls]
                                                                                                                    • >>   app_key_hold_detection +
                                                                                                                    • >>   app_new_key_detection
                                                                                                                    -
                                                                                                                    [Called By]
                                                                                                                    • >>   app_key_scan (via Veneer) +
                                                                                                                      [Called By]
                                                                                                                      • >>   app_key_scan (via Veneer)
                                                                                                                      -

                                                                                                                      co_rand_word (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                      [Called By]

                                                                                                                      • >>   gapc_bond_req_ind_handler +

                                                                                                                        co_rand_word (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                        [Called By]

                                                                                                                        • >>   gapc_bond_req_ind_handler
                                                                                                                        -

                                                                                                                        co_random_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                        [Called By]

                                                                                                                        • >>   bluetooth_init +

                                                                                                                          co_random_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                          [Called By]

                                                                                                                          • >>   bluetooth_init
                                                                                                                          -

                                                                                                                          gapc_get_bdaddr (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                          [Called By]

                                                                                                                          • >>   gapc_bond_ind_handler +

                                                                                                                            gapc_get_bdaddr (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                            [Called By]

                                                                                                                            • >>   gapc_bond_ind_handler
                                                                                                                            -

                                                                                                                            gatt_db_svc_add (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED) +

                                                                                                                            gatt_db_svc_add (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED)

                                                                                                                            [Called By]

                                                                                                                              -

                                                                                                                              gatt_srv_event_send (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED) +

                                                                                                                              gatt_srv_event_send (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED)

                                                                                                                              [Called By]

                                                                                                                                -

                                                                                                                                modem_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                [Called By]

                                                                                                                                • >>   bluetooth_init +

                                                                                                                                  modem_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                  [Called By]

                                                                                                                                  • >>   bluetooth_init
                                                                                                                                  -

                                                                                                                                  prf_dst_task_get (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED) +

                                                                                                                                  prf_dst_task_get (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE), UNUSED)

                                                                                                                                  [Called By]

                                                                                                                                    -

                                                                                                                                    rf_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                    [Called By]

                                                                                                                                    • >>   bluetooth_init +

                                                                                                                                      rf_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                      [Called By]

                                                                                                                                      • >>   bluetooth_init
                                                                                                                                      -

                                                                                                                                      rf_tx_power_set (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                      [Called By]

                                                                                                                                      • >>   bluetooth_init +

                                                                                                                                        rf_tx_power_set (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                        [Called By]

                                                                                                                                        • >>   bluetooth_init
                                                                                                                                        -

                                                                                                                                        rom_env_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                        [Called By]

                                                                                                                                        • >>   board_init +

                                                                                                                                          rom_env_init (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                          [Called By]

                                                                                                                                          • >>   board_init
                                                                                                                                          -

                                                                                                                                          xc_ble_advertise_create (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                          [Called By]

                                                                                                                                          • >>   app_create_advertising +

                                                                                                                                            xc_ble_advertise_create (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                            [Called By]

                                                                                                                                            • >>   app_create_advertising
                                                                                                                                            -

                                                                                                                                            xc_ble_advertise_start (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                            [Called By]

                                                                                                                                            • >>   app_start_advertising +

                                                                                                                                              xc_ble_advertise_start (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                              [Called By]

                                                                                                                                              • >>   app_start_advertising
                                                                                                                                              -

                                                                                                                                              xc_ble_conn_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                              [Called By]

                                                                                                                                              • >>   gapc_callback +

                                                                                                                                                xc_ble_conn_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                [Called By]

                                                                                                                                                • >>   gapc_callback
                                                                                                                                                -

                                                                                                                                                xc_ble_gapm_reset (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                [Called By]

                                                                                                                                                • >>   app_init +

                                                                                                                                                  xc_ble_gapm_reset (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                  [Called By]

                                                                                                                                                  • >>   app_init
                                                                                                                                                  -

                                                                                                                                                  xc_ble_gatt_cli_mtu_exch (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                  [Called By]

                                                                                                                                                  • >>   gapc_callback +

                                                                                                                                                    xc_ble_gatt_cli_mtu_exch (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                    [Called By]

                                                                                                                                                    • >>   gapc_callback
                                                                                                                                                    -

                                                                                                                                                    xc_ble_gatt_service16_add (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                    [Called By]

                                                                                                                                                    • >>   custom_svc_add +

                                                                                                                                                      xc_ble_gatt_service16_add (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                      [Called By]

                                                                                                                                                      • >>   custom_svc_add
                                                                                                                                                      -

                                                                                                                                                      xc_ble_gatt_srv_notify (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                      [Called By]

                                                                                                                                                      • >>   slave_send_data -
                                                                                                                                                      • >>   ota_slave_send_data +

                                                                                                                                                        xc_ble_gatt_srv_notify (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                        [Called By]

                                                                                                                                                        • >>   slave_send_data +
                                                                                                                                                        • >>   ota_slave_send_data
                                                                                                                                                        -

                                                                                                                                                        xc_ble_gatt_srv_read_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                        [Called By]

                                                                                                                                                        • >>   custom_svc_cb_att_read_get +

                                                                                                                                                          xc_ble_gatt_srv_read_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                          [Called By]

                                                                                                                                                          • >>   custom_svc_cb_att_read_get
                                                                                                                                                          -

                                                                                                                                                          xc_ble_gatt_srv_write_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                          [Called By]

                                                                                                                                                          • >>   custom_svc_cb_att_val_set +

                                                                                                                                                            xc_ble_gatt_srv_write_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                            [Called By]

                                                                                                                                                            • >>   custom_svc_cb_att_val_set
                                                                                                                                                            -

                                                                                                                                                            xc_ble_gatt_user_srv_register (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                            [Called By]

                                                                                                                                                            • >>   custom_svc_add +

                                                                                                                                                              xc_ble_gatt_user_srv_register (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                              [Called By]

                                                                                                                                                              • >>   custom_svc_add
                                                                                                                                                              -

                                                                                                                                                              xc_ble_get_dev_info_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                              [Called By]

                                                                                                                                                              • >>   gapc_get_device_info_req_ind +

                                                                                                                                                                xc_ble_get_dev_info_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                                [Called By]

                                                                                                                                                                • >>   gapc_get_device_info_req_ind
                                                                                                                                                                -

                                                                                                                                                                xc_ble_param_update_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                                [Called By]

                                                                                                                                                                • >>   gapc_callback +

                                                                                                                                                                  xc_ble_param_update_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                                  [Called By]

                                                                                                                                                                  • >>   gapc_callback
                                                                                                                                                                  -

                                                                                                                                                                  xc_ble_set_adv_data (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                                  [Called By]

                                                                                                                                                                  • >>   app_set_adv_data +

                                                                                                                                                                    xc_ble_set_adv_data (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                                    [Called By]

                                                                                                                                                                    • >>   app_set_adv_data
                                                                                                                                                                    -

                                                                                                                                                                    xc_ble_set_dev_config (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                                    [Called By]

                                                                                                                                                                    • >>   gapm_cmp_evt +

                                                                                                                                                                      xc_ble_set_dev_config (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                                      [Called By]

                                                                                                                                                                      • >>   gapm_cmp_evt
                                                                                                                                                                      -

                                                                                                                                                                      xc_ble_set_dev_info_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) -

                                                                                                                                                                      [Called By]

                                                                                                                                                                      • >>   gapc_callback +

                                                                                                                                                                        xc_ble_set_dev_info_cfm (Thumb, 0 bytes, Stack size 0 bytes, rom_symdefs.o(ABSOLUTE)) +

                                                                                                                                                                        [Called By]

                                                                                                                                                                        • >>   gapc_callback
                                                                                                                                                                        -

                                                                                                                                                                        __main (Thumb, 8 bytes, Stack size 0 bytes, __main.o(!!!main)) -

                                                                                                                                                                        [Calls]

                                                                                                                                                                        • >>   __rt_entry -
                                                                                                                                                                        • >>   __scatterload +

                                                                                                                                                                          __main (Thumb, 8 bytes, Stack size 0 bytes, __main.o(!!!main)) +

                                                                                                                                                                          [Calls]

                                                                                                                                                                          • >>   __rt_entry +
                                                                                                                                                                          • >>   __scatterload
                                                                                                                                                                          -

                                                                                                                                                                          __scatterload (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter)) -

                                                                                                                                                                          [Called By]

                                                                                                                                                                          • >>   __main +

                                                                                                                                                                            __scatterload (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter)) +

                                                                                                                                                                            [Called By]

                                                                                                                                                                            • >>   __main
                                                                                                                                                                            -

                                                                                                                                                                            __scatterload_rt2 (Thumb, 52 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) -

                                                                                                                                                                            [Calls]

                                                                                                                                                                            • >>   __rt_entry +

                                                                                                                                                                              __scatterload_rt2 (Thumb, 52 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) +

                                                                                                                                                                              [Calls]

                                                                                                                                                                              • >>   __rt_entry
                                                                                                                                                                              -

                                                                                                                                                                              __scatterload_rt2_thumb_only (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) +

                                                                                                                                                                              __scatterload_rt2_thumb_only (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) -

                                                                                                                                                                              __scatterload_null (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) +

                                                                                                                                                                              __scatterload_null (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) -

                                                                                                                                                                              __scatterload_copy (Thumb, 26 bytes, Stack size unknown bytes, __scatter_copy.o(!!handler_copy), UNUSED) +

                                                                                                                                                                              __scatterload_copy (Thumb, 26 bytes, Stack size unknown bytes, __scatter_copy.o(!!handler_copy), UNUSED) -

                                                                                                                                                                              __scatterload_zeroinit (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED) +

                                                                                                                                                                              __scatterload_zeroinit (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED) -

                                                                                                                                                                              _printf_percent (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000)) -

                                                                                                                                                                              [Called By]

                                                                                                                                                                              • >>   __printf +

                                                                                                                                                                                _printf_percent (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000)) +

                                                                                                                                                                                [Called By]

                                                                                                                                                                                • >>   __printf
                                                                                                                                                                                -

                                                                                                                                                                                _printf_n (Thumb, 0 bytes, Stack size unknown bytes, _printf_n.o(.ARM.Collect$$_printf_percent$$00000001)) -

                                                                                                                                                                                [Calls]

                                                                                                                                                                                • >>   _printf_charcount +

                                                                                                                                                                                  _printf_n (Thumb, 0 bytes, Stack size unknown bytes, _printf_n.o(.ARM.Collect$$_printf_percent$$00000001)) +

                                                                                                                                                                                  [Calls]

                                                                                                                                                                                  • >>   _printf_charcount
                                                                                                                                                                                  -

                                                                                                                                                                                  _printf_p (Thumb, 0 bytes, Stack size unknown bytes, _printf_p.o(.ARM.Collect$$_printf_percent$$00000002)) +

                                                                                                                                                                                  _printf_p (Thumb, 0 bytes, Stack size unknown bytes, _printf_p.o(.ARM.Collect$$_printf_percent$$00000002))

                                                                                                                                                                                  [Stack]

                                                                                                                                                                                  • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                  • Call Chain = _printf_p ⇒ _printf_hex_ptr ⇒ _printf_longlong_hex ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                  -
                                                                                                                                                                                  [Calls]
                                                                                                                                                                                  • >>   _printf_hex_ptr +
                                                                                                                                                                                    [Calls]
                                                                                                                                                                                    • >>   _printf_hex_ptr
                                                                                                                                                                                    -

                                                                                                                                                                                    _printf_f (Thumb, 0 bytes, Stack size unknown bytes, _printf_f.o(.ARM.Collect$$_printf_percent$$00000003)) +

                                                                                                                                                                                    _printf_f (Thumb, 0 bytes, Stack size unknown bytes, _printf_f.o(.ARM.Collect$$_printf_percent$$00000003))

                                                                                                                                                                                    [Stack]

                                                                                                                                                                                    • Max Depth = 8 + Unknown Stack Size
                                                                                                                                                                                    • Call Chain = _printf_f ⇒ _printf_fp_dec
                                                                                                                                                                                    -
                                                                                                                                                                                    [Calls]
                                                                                                                                                                                    • >>   _printf_fp_dec +
                                                                                                                                                                                      [Calls]
                                                                                                                                                                                      • >>   _printf_fp_dec
                                                                                                                                                                                      -

                                                                                                                                                                                      _printf_e (Thumb, 0 bytes, Stack size unknown bytes, _printf_e.o(.ARM.Collect$$_printf_percent$$00000004)) +

                                                                                                                                                                                      _printf_e (Thumb, 0 bytes, Stack size unknown bytes, _printf_e.o(.ARM.Collect$$_printf_percent$$00000004))

                                                                                                                                                                                      [Stack]

                                                                                                                                                                                      • Max Depth = 8 + Unknown Stack Size
                                                                                                                                                                                      • Call Chain = _printf_e ⇒ _printf_fp_dec
                                                                                                                                                                                      -
                                                                                                                                                                                      [Calls]
                                                                                                                                                                                      • >>   _printf_fp_dec +
                                                                                                                                                                                        [Calls]
                                                                                                                                                                                        • >>   _printf_fp_dec
                                                                                                                                                                                        -

                                                                                                                                                                                        _printf_g (Thumb, 0 bytes, Stack size unknown bytes, _printf_g.o(.ARM.Collect$$_printf_percent$$00000005)) +

                                                                                                                                                                                        _printf_g (Thumb, 0 bytes, Stack size unknown bytes, _printf_g.o(.ARM.Collect$$_printf_percent$$00000005))

                                                                                                                                                                                        [Stack]

                                                                                                                                                                                        • Max Depth = 8 + Unknown Stack Size
                                                                                                                                                                                        • Call Chain = _printf_g ⇒ _printf_fp_dec
                                                                                                                                                                                        -
                                                                                                                                                                                        [Calls]
                                                                                                                                                                                        • >>   _printf_fp_dec +
                                                                                                                                                                                          [Calls]
                                                                                                                                                                                          • >>   _printf_fp_dec
                                                                                                                                                                                          -

                                                                                                                                                                                          _printf_a (Thumb, 0 bytes, Stack size unknown bytes, _printf_a.o(.ARM.Collect$$_printf_percent$$00000006)) +

                                                                                                                                                                                          _printf_a (Thumb, 0 bytes, Stack size unknown bytes, _printf_a.o(.ARM.Collect$$_printf_percent$$00000006))

                                                                                                                                                                                          [Stack]

                                                                                                                                                                                          • Max Depth = 8 + Unknown Stack Size
                                                                                                                                                                                          • Call Chain = _printf_a ⇒ _printf_fp_hex
                                                                                                                                                                                          -
                                                                                                                                                                                          [Calls]
                                                                                                                                                                                          • >>   _printf_fp_hex +
                                                                                                                                                                                            [Calls]
                                                                                                                                                                                            • >>   _printf_fp_hex
                                                                                                                                                                                            -

                                                                                                                                                                                            _printf_ll (Thumb, 0 bytes, Stack size unknown bytes, _printf_ll.o(.ARM.Collect$$_printf_percent$$00000007)) +

                                                                                                                                                                                            _printf_ll (Thumb, 0 bytes, Stack size unknown bytes, _printf_ll.o(.ARM.Collect$$_printf_percent$$00000007)) -

                                                                                                                                                                                            _printf_i (Thumb, 0 bytes, Stack size unknown bytes, _printf_i.o(.ARM.Collect$$_printf_percent$$00000008)) +

                                                                                                                                                                                            _printf_i (Thumb, 0 bytes, Stack size unknown bytes, _printf_i.o(.ARM.Collect$$_printf_percent$$00000008))

                                                                                                                                                                                            [Stack]

                                                                                                                                                                                            • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                            • Call Chain = _printf_i ⇒ _printf_int_dec ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                            -
                                                                                                                                                                                            [Calls]
                                                                                                                                                                                            • >>   _printf_int_dec +
                                                                                                                                                                                              [Calls]
                                                                                                                                                                                              • >>   _printf_int_dec
                                                                                                                                                                                              -

                                                                                                                                                                                              _printf_d (Thumb, 0 bytes, Stack size unknown bytes, _printf_d.o(.ARM.Collect$$_printf_percent$$00000009)) +

                                                                                                                                                                                              _printf_d (Thumb, 0 bytes, Stack size unknown bytes, _printf_d.o(.ARM.Collect$$_printf_percent$$00000009))

                                                                                                                                                                                              [Stack]

                                                                                                                                                                                              • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                              • Call Chain = _printf_d ⇒ _printf_int_dec ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                              -
                                                                                                                                                                                              [Calls]
                                                                                                                                                                                              • >>   _printf_int_dec +
                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                • >>   _printf_int_dec
                                                                                                                                                                                                -

                                                                                                                                                                                                _printf_u (Thumb, 0 bytes, Stack size unknown bytes, _printf_u.o(.ARM.Collect$$_printf_percent$$0000000A)) +

                                                                                                                                                                                                _printf_u (Thumb, 0 bytes, Stack size unknown bytes, _printf_u.o(.ARM.Collect$$_printf_percent$$0000000A))

                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                                • Call Chain = _printf_u ⇒ _printf_int_dec ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                -
                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                • >>   _printf_int_dec +
                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                  • >>   _printf_int_dec
                                                                                                                                                                                                  -

                                                                                                                                                                                                  _printf_o (Thumb, 0 bytes, Stack size unknown bytes, _printf_o.o(.ARM.Collect$$_printf_percent$$0000000B)) +

                                                                                                                                                                                                  _printf_o (Thumb, 0 bytes, Stack size unknown bytes, _printf_o.o(.ARM.Collect$$_printf_percent$$0000000B))

                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                  • Max Depth = 80 + Unknown Stack Size
                                                                                                                                                                                                  • Call Chain = _printf_o ⇒ _printf_int_oct ⇒ _printf_longlong_oct ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                  -
                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                  • >>   _printf_int_oct +
                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                    • >>   _printf_int_oct
                                                                                                                                                                                                    -

                                                                                                                                                                                                    _printf_x (Thumb, 0 bytes, Stack size unknown bytes, _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C)) +

                                                                                                                                                                                                    _printf_x (Thumb, 0 bytes, Stack size unknown bytes, _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C))

                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                    • Max Depth = 96 + Unknown Stack Size
                                                                                                                                                                                                    • Call Chain = _printf_x ⇒ _printf_int_hex ⇒ _printf_longlong_hex ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                    -
                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                    • >>   _printf_int_hex +
                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                      • >>   _printf_int_hex
                                                                                                                                                                                                      -

                                                                                                                                                                                                      _printf_lli (Thumb, 0 bytes, Stack size unknown bytes, _printf_lli.o(.ARM.Collect$$_printf_percent$$0000000D)) +

                                                                                                                                                                                                      _printf_lli (Thumb, 0 bytes, Stack size unknown bytes, _printf_lli.o(.ARM.Collect$$_printf_percent$$0000000D))

                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                      • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                                      • Call Chain = _printf_lli ⇒ _printf_longlong_dec ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                      -
                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                      • >>   _printf_longlong_dec +
                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                        • >>   _printf_longlong_dec
                                                                                                                                                                                                        -

                                                                                                                                                                                                        _printf_lld (Thumb, 0 bytes, Stack size unknown bytes, _printf_lld.o(.ARM.Collect$$_printf_percent$$0000000E)) +

                                                                                                                                                                                                        _printf_lld (Thumb, 0 bytes, Stack size unknown bytes, _printf_lld.o(.ARM.Collect$$_printf_percent$$0000000E))

                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                        • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                                        • Call Chain = _printf_lld ⇒ _printf_longlong_dec ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                        -
                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                        • >>   _printf_longlong_dec +
                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                          • >>   _printf_longlong_dec
                                                                                                                                                                                                          -

                                                                                                                                                                                                          _printf_llu (Thumb, 0 bytes, Stack size unknown bytes, _printf_llu.o(.ARM.Collect$$_printf_percent$$0000000F)) +

                                                                                                                                                                                                          _printf_llu (Thumb, 0 bytes, Stack size unknown bytes, _printf_llu.o(.ARM.Collect$$_printf_percent$$0000000F))

                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                          • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                                          • Call Chain = _printf_llu ⇒ _printf_longlong_dec ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                          -
                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                          • >>   _printf_longlong_dec +
                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                            • >>   _printf_longlong_dec
                                                                                                                                                                                                            -

                                                                                                                                                                                                            _printf_llo (Thumb, 0 bytes, Stack size unknown bytes, _printf_llo.o(.ARM.Collect$$_printf_percent$$00000010)) +

                                                                                                                                                                                                            _printf_llo (Thumb, 0 bytes, Stack size unknown bytes, _printf_llo.o(.ARM.Collect$$_printf_percent$$00000010))

                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                            • Max Depth = 72 + Unknown Stack Size
                                                                                                                                                                                                            • Call Chain = _printf_llo ⇒ _printf_ll_oct ⇒ _printf_longlong_oct ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                            -
                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                            • >>   _printf_ll_oct +
                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                              • >>   _printf_ll_oct
                                                                                                                                                                                                              -

                                                                                                                                                                                                              _printf_llx (Thumb, 0 bytes, Stack size unknown bytes, _printf_llx.o(.ARM.Collect$$_printf_percent$$00000011)) +

                                                                                                                                                                                                              _printf_llx (Thumb, 0 bytes, Stack size unknown bytes, _printf_llx.o(.ARM.Collect$$_printf_percent$$00000011))

                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                              • Max Depth = 80 + Unknown Stack Size
                                                                                                                                                                                                              • Call Chain = _printf_llx ⇒ _printf_ll_hex ⇒ _printf_longlong_hex ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                              -
                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                              • >>   _printf_ll_hex +
                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                • >>   _printf_ll_hex
                                                                                                                                                                                                                -

                                                                                                                                                                                                                _printf_l (Thumb, 0 bytes, Stack size unknown bytes, _printf_l.o(.ARM.Collect$$_printf_percent$$00000012)) +

                                                                                                                                                                                                                _printf_l (Thumb, 0 bytes, Stack size unknown bytes, _printf_l.o(.ARM.Collect$$_printf_percent$$00000012)) -

                                                                                                                                                                                                                _printf_c (Thumb, 0 bytes, Stack size unknown bytes, _printf_c.o(.ARM.Collect$$_printf_percent$$00000013)) +

                                                                                                                                                                                                                _printf_c (Thumb, 0 bytes, Stack size unknown bytes, _printf_c.o(.ARM.Collect$$_printf_percent$$00000013))

                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                • Max Depth = 40 + Unknown Stack Size
                                                                                                                                                                                                                • Call Chain = _printf_c ⇒ _printf_char ⇒ _printf_cs_common ⇒ _printf_str ⇒ _printf_post_padding
                                                                                                                                                                                                                -
                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                • >>   _printf_char +
                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                  • >>   _printf_char
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  _printf_s (Thumb, 0 bytes, Stack size unknown bytes, _printf_s.o(.ARM.Collect$$_printf_percent$$00000014)) +

                                                                                                                                                                                                                  _printf_s (Thumb, 0 bytes, Stack size unknown bytes, _printf_s.o(.ARM.Collect$$_printf_percent$$00000014))

                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                  • Max Depth = 40 + Unknown Stack Size
                                                                                                                                                                                                                  • Call Chain = _printf_s ⇒ _printf_string ⇒ _printf_cs_common ⇒ _printf_str ⇒ _printf_post_padding
                                                                                                                                                                                                                  -
                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                  • >>   _printf_string +
                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                    • >>   _printf_string
                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    _printf_lc (Thumb, 0 bytes, Stack size unknown bytes, _printf_lc.o(.ARM.Collect$$_printf_percent$$00000015)) +

                                                                                                                                                                                                                    _printf_lc (Thumb, 0 bytes, Stack size unknown bytes, _printf_lc.o(.ARM.Collect$$_printf_percent$$00000015))

                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                    • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                                                    • Call Chain = _printf_lc ⇒ _printf_wchar ⇒ _printf_lcs_common ⇒ _printf_wctomb ⇒ _wcrtomb ⇒ __rt_ctype_table
                                                                                                                                                                                                                    -
                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                    • >>   _printf_wchar +
                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                      • >>   _printf_wchar
                                                                                                                                                                                                                      -

                                                                                                                                                                                                                      _printf_ls (Thumb, 0 bytes, Stack size unknown bytes, _printf_ls.o(.ARM.Collect$$_printf_percent$$00000016)) +

                                                                                                                                                                                                                      _printf_ls (Thumb, 0 bytes, Stack size unknown bytes, _printf_ls.o(.ARM.Collect$$_printf_percent$$00000016))

                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                      • Max Depth = 88 + Unknown Stack Size
                                                                                                                                                                                                                      • Call Chain = _printf_ls ⇒ _printf_wstring ⇒ _printf_lcs_common ⇒ _printf_wctomb ⇒ _wcrtomb ⇒ __rt_ctype_table
                                                                                                                                                                                                                      -
                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                      • >>   _printf_wstring +
                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                        • >>   _printf_wstring
                                                                                                                                                                                                                        -

                                                                                                                                                                                                                        _printf_percent_end (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017)) +

                                                                                                                                                                                                                        _printf_percent_end (Thumb, 0 bytes, Stack size unknown bytes, _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017)) -

                                                                                                                                                                                                                        __rt_lib_init (Thumb, 0 bytes, Stack size unknown bytes, libinit.o(.ARM.Collect$$libinit$$00000000)) -

                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                        • >>   __rt_entry_li +

                                                                                                                                                                                                                          __rt_lib_init (Thumb, 0 bytes, Stack size unknown bytes, libinit.o(.ARM.Collect$$libinit$$00000000)) +

                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                          • >>   __rt_entry_li
                                                                                                                                                                                                                          -

                                                                                                                                                                                                                          __rt_lib_init_fp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000002)) +

                                                                                                                                                                                                                          __rt_lib_init_fp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000002)) -

                                                                                                                                                                                                                          __rt_lib_init_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000A)) +

                                                                                                                                                                                                                          __rt_lib_init_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000A)) -

                                                                                                                                                                                                                          __rt_lib_init_lc_common (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000F)) -

                                                                                                                                                                                                                          [Calls]

                                                                                                                                                                                                                          • >>   __rt_locale +

                                                                                                                                                                                                                            __rt_lib_init_lc_common (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000F)) +

                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                            • >>   __rt_locale
                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            __rt_lib_init_preinit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000004)) +

                                                                                                                                                                                                                            __rt_lib_init_preinit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000004)) -

                                                                                                                                                                                                                            __rt_lib_init_rand_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E)) +

                                                                                                                                                                                                                            __rt_lib_init_rand_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E)) -

                                                                                                                                                                                                                            __rt_lib_init_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000C)) +

                                                                                                                                                                                                                            __rt_lib_init_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000C)) -

                                                                                                                                                                                                                            __rt_lib_init_lc_collate_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000011)) +

                                                                                                                                                                                                                            __rt_lib_init_lc_collate_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000011)) -

                                                                                                                                                                                                                            __rt_lib_init_lc_ctype_2 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000012)) +

                                                                                                                                                                                                                            __rt_lib_init_lc_ctype_2 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000012))

                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                            • Max Depth = 24 + Unknown Stack Size
                                                                                                                                                                                                                            • Call Chain = __rt_lib_init_lc_ctype_2 ⇒ _get_lc_ctype ⇒ strcmp
                                                                                                                                                                                                                            -
                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                            • >>   _get_lc_ctype +
                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                              • >>   _get_lc_ctype
                                                                                                                                                                                                                              -

                                                                                                                                                                                                                              __rt_lib_init_lc_ctype_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000013)) +

                                                                                                                                                                                                                              __rt_lib_init_lc_ctype_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000013)) -

                                                                                                                                                                                                                              __rt_lib_init_lc_monetary_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000015)) +

                                                                                                                                                                                                                              __rt_lib_init_lc_monetary_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000015)) -

                                                                                                                                                                                                                              __rt_lib_init_lc_numeric_2 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000016)) +

                                                                                                                                                                                                                              __rt_lib_init_lc_numeric_2 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000016))

                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                              • Max Depth = 24 + Unknown Stack Size
                                                                                                                                                                                                                              • Call Chain = __rt_lib_init_lc_numeric_2 ⇒ _get_lc_numeric ⇒ strcmp
                                                                                                                                                                                                                              -
                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                              • >>   _get_lc_numeric +
                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                • >>   _get_lc_numeric
                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                __rt_lib_init_alloca_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002E)) +

                                                                                                                                                                                                                                __rt_lib_init_alloca_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002E)) -

                                                                                                                                                                                                                                __rt_lib_init_argv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002C)) +

                                                                                                                                                                                                                                __rt_lib_init_argv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002C)) -

                                                                                                                                                                                                                                __rt_lib_init_atexit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001B)) +

                                                                                                                                                                                                                                __rt_lib_init_atexit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001B)) -

                                                                                                                                                                                                                                __rt_lib_init_clock_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000021)) +

                                                                                                                                                                                                                                __rt_lib_init_clock_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000021)) -

                                                                                                                                                                                                                                __rt_lib_init_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000032)) +

                                                                                                                                                                                                                                __rt_lib_init_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000032)) -

                                                                                                                                                                                                                                __rt_lib_init_exceptions_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030)) +

                                                                                                                                                                                                                                __rt_lib_init_exceptions_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030)) -

                                                                                                                                                                                                                                __rt_lib_init_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001F)) +

                                                                                                                                                                                                                                __rt_lib_init_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001F)) -

                                                                                                                                                                                                                                __rt_lib_init_getenv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000023)) +

                                                                                                                                                                                                                                __rt_lib_init_getenv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000023)) -

                                                                                                                                                                                                                                __rt_lib_init_lc_numeric_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000017)) +

                                                                                                                                                                                                                                __rt_lib_init_lc_numeric_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000017)) -

                                                                                                                                                                                                                                __rt_lib_init_lc_time_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000019)) +

                                                                                                                                                                                                                                __rt_lib_init_lc_time_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000019)) -

                                                                                                                                                                                                                                __rt_lib_init_return (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000033)) +

                                                                                                                                                                                                                                __rt_lib_init_return (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000033)) -

                                                                                                                                                                                                                                __rt_lib_init_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001D)) +

                                                                                                                                                                                                                                __rt_lib_init_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001D)) -

                                                                                                                                                                                                                                __rt_lib_init_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000025)) +

                                                                                                                                                                                                                                __rt_lib_init_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000025)) -

                                                                                                                                                                                                                                __rt_lib_shutdown (Thumb, 0 bytes, Stack size unknown bytes, libshutdown.o(.ARM.Collect$$libshutdown$$00000000)) -

                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                • >>   __rt_exit_ls +

                                                                                                                                                                                                                                  __rt_lib_shutdown (Thumb, 0 bytes, Stack size unknown bytes, libshutdown.o(.ARM.Collect$$libshutdown$$00000000)) +

                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                  • >>   __rt_exit_ls
                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                  __rt_lib_shutdown_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)) +

                                                                                                                                                                                                                                  __rt_lib_shutdown_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)) -

                                                                                                                                                                                                                                  __rt_lib_shutdown_fini_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)) +

                                                                                                                                                                                                                                  __rt_lib_shutdown_fini_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)) -

                                                                                                                                                                                                                                  __rt_lib_shutdown_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)) +

                                                                                                                                                                                                                                  __rt_lib_shutdown_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)) -

                                                                                                                                                                                                                                  __rt_lib_shutdown_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000011)) +

                                                                                                                                                                                                                                  __rt_lib_shutdown_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000011)) -

                                                                                                                                                                                                                                  __rt_lib_shutdown_return (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000012)) +

                                                                                                                                                                                                                                  __rt_lib_shutdown_return (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000012)) -

                                                                                                                                                                                                                                  __rt_lib_shutdown_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)) +

                                                                                                                                                                                                                                  __rt_lib_shutdown_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)) -

                                                                                                                                                                                                                                  __rt_lib_shutdown_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)) +

                                                                                                                                                                                                                                  __rt_lib_shutdown_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)) -

                                                                                                                                                                                                                                  __rt_lib_shutdown_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)) +

                                                                                                                                                                                                                                  __rt_lib_shutdown_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)) -

                                                                                                                                                                                                                                  __rt_entry (Thumb, 0 bytes, Stack size unknown bytes, __rtentry.o(.ARM.Collect$$rtentry$$00000000)) -

                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                  • >>   __main -
                                                                                                                                                                                                                                  • >>   __scatterload_rt2 +

                                                                                                                                                                                                                                    __rt_entry (Thumb, 0 bytes, Stack size unknown bytes, __rtentry.o(.ARM.Collect$$rtentry$$00000000)) +

                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                    • >>   __main +
                                                                                                                                                                                                                                    • >>   __scatterload_rt2
                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    __rt_entry_presh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002)) +

                                                                                                                                                                                                                                    __rt_entry_presh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002)) -

                                                                                                                                                                                                                                    __rt_entry_sh (Thumb, 0 bytes, Stack size unknown bytes, __rtentry4.o(.ARM.Collect$$rtentry$$00000004)) +

                                                                                                                                                                                                                                    __rt_entry_sh (Thumb, 0 bytes, Stack size unknown bytes, __rtentry4.o(.ARM.Collect$$rtentry$$00000004))

                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                    • Max Depth = 8 + Unknown Stack Size
                                                                                                                                                                                                                                    • Call Chain = __rt_entry_sh ⇒ __user_setup_stackheap
                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                    • >>   __user_setup_stackheap +
                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                      • >>   __user_setup_stackheap
                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                      __rt_entry_li (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)) -

                                                                                                                                                                                                                                      [Calls]

                                                                                                                                                                                                                                      • >>   __rt_lib_init +

                                                                                                                                                                                                                                        __rt_entry_li (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)) +

                                                                                                                                                                                                                                        [Calls]

                                                                                                                                                                                                                                        • >>   __rt_lib_init
                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                        __rt_entry_postsh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009)) +

                                                                                                                                                                                                                                        __rt_entry_postsh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009)) -

                                                                                                                                                                                                                                        __rt_entry_main (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)) +

                                                                                                                                                                                                                                        __rt_entry_main (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D))

                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                        • Max Depth = 544 + Unknown Stack Size
                                                                                                                                                                                                                                        • Call Chain = __rt_entry_main ⇒ main ⇒ bluetooth_init ⇒ flash_init ⇒ xc_unique_identification_read ⇒ xc_fmc_spi_flash_read ⇒ xc_fmc_spi_flash_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                        • >>   main -
                                                                                                                                                                                                                                        • >>   exit +
                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                          • >>   main +
                                                                                                                                                                                                                                          • >>   exit
                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                          __rt_entry_postli_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)) +

                                                                                                                                                                                                                                          __rt_entry_postli_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)) -

                                                                                                                                                                                                                                          __rt_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit.o(.ARM.Collect$$rtexit$$00000000)) -

                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                          • >>   exit +

                                                                                                                                                                                                                                            __rt_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit.o(.ARM.Collect$$rtexit$$00000000)) +

                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                            • >>   exit
                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            __rt_exit_ls (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000003)) -

                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                            • >>   __rt_lib_shutdown +

                                                                                                                                                                                                                                              __rt_exit_ls (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000003)) +

                                                                                                                                                                                                                                              [Calls]

                                                                                                                                                                                                                                              • >>   __rt_lib_shutdown
                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                              __rt_exit_prels_1 (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002)) +

                                                                                                                                                                                                                                              __rt_exit_prels_1 (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002)) -

                                                                                                                                                                                                                                              __rt_exit_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000004)) -

                                                                                                                                                                                                                                              [Calls]

                                                                                                                                                                                                                                              • >>   _sys_exit +

                                                                                                                                                                                                                                                __rt_exit_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000004)) +

                                                                                                                                                                                                                                                [Calls]

                                                                                                                                                                                                                                                • >>   _sys_exit
                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                __aeabi_memcpy4 (Thumb, 56 bytes, Stack size 0 bytes, rt_memcpy.o(.emb_text)) -

                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                • >>   gapm_cmp_evt -
                                                                                                                                                                                                                                                • >>   __aeabi_memcpy +

                                                                                                                                                                                                                                                  __aeabi_memcpy4 (Thumb, 56 bytes, Stack size 0 bytes, rt_memcpy.o(.emb_text)) +

                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                  • >>   gapm_cmp_evt +
                                                                                                                                                                                                                                                  • >>   __aeabi_memcpy
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  __aeabi_memcpy8 (Thumb, 0 bytes, Stack size 0 bytes, rt_memcpy.o(.emb_text), UNUSED) +

                                                                                                                                                                                                                                                  __aeabi_memcpy8 (Thumb, 0 bytes, Stack size 0 bytes, rt_memcpy.o(.emb_text), UNUSED) -

                                                                                                                                                                                                                                                  Reset_Handler (Thumb, 14 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  Reset_Handler (Thumb, 14 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  NMI_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  NMI_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  HardFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  HardFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  MemManage_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  MemManage_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  BusFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  BusFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  UsageFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  UsageFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  SVC_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  SVC_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  DebugMon_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  DebugMon_Handler (Thumb, 2 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  AES_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  AES_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  AOTIMER0_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  AOTIMER0_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  AOTIMER1_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  AOTIMER1_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  AUDIO_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  AUDIO_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  CAN_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  CAN_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  CMP_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  CMP_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  CPR_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  CPR_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  DMA_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  DMA_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  FMC_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  FMC_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  I2C_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  I2C_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  I2S_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  I2S_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  RF24G_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  RF24G_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  SPI0_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  SPI0_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  SPI1_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  SPI1_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  SPI2_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  SPI2_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  USB_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                  USB_Handler (Thumb, 0 bytes, Stack size 0 bytes, startup_xinc.o(.text))
                                                                                                                                                                                                                                                  [Address Reference Count : 1]

                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                  __user_initial_stackheap (Thumb, 0 bytes, Stack size unknown bytes, startup_xinc.o(.text)) -

                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                  • >>   __user_setup_stackheap +

                                                                                                                                                                                                                                                    __user_initial_stackheap (Thumb, 0 bytes, Stack size unknown bytes, startup_xinc.o(.text)) +

                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                    • >>   __user_setup_stackheap
                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                    __aeabi_lmul (Thumb, 48 bytes, Stack size 12 bytes, llmul.o(.text)) +

                                                                                                                                                                                                                                                    __aeabi_lmul (Thumb, 48 bytes, Stack size 12 bytes, llmul.o(.text))

                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                    • Max Depth = 12
                                                                                                                                                                                                                                                    • Call Chain = __aeabi_lmul
                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                    • >>   xc_timer_us_to_ticks +
                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                      • >>   xc_timer_us_to_ticks
                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      _ll_mul (Thumb, 0 bytes, Stack size 12 bytes, llmul.o(.text), UNUSED) +

                                                                                                                                                                                                                                                      _ll_mul (Thumb, 0 bytes, Stack size 12 bytes, llmul.o(.text), UNUSED) -

                                                                                                                                                                                                                                                      __aeabi_uldivmod (Thumb, 258 bytes, Stack size 32 bytes, lludiv.o(.text)) +

                                                                                                                                                                                                                                                      __aeabi_uldivmod (Thumb, 258 bytes, Stack size 32 bytes, lludiv.o(.text))

                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                      • Max Depth = 32
                                                                                                                                                                                                                                                      • Call Chain = __aeabi_uldivmod
                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                      • >>   xc_timer_us_to_ticks +
                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                        • >>   xc_timer_us_to_ticks
                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                        _ll_udiv (Thumb, 0 bytes, Stack size 32 bytes, lludiv.o(.text), UNUSED) +

                                                                                                                                                                                                                                                        _ll_udiv (Thumb, 0 bytes, Stack size 32 bytes, lludiv.o(.text), UNUSED) -

                                                                                                                                                                                                                                                        printf (Thumb, 22 bytes, Stack size 24 bytes, printf.o(.text)) +

                                                                                                                                                                                                                                                        printf (Thumb, 22 bytes, Stack size 24 bytes, printf.o(.text))

                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                        • Max Depth = 136 + Unknown Stack Size
                                                                                                                                                                                                                                                        • Call Chain = printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                        • >>   _printf_char_file +
                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                          • >>   _printf_char_file

                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                          • arch_main.o(i.rom_env_host_init)
                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                          __2printf (Thumb, 22 bytes, Stack size 24 bytes, __2printf.o(.text)) +

                                                                                                                                                                                                                                                          __2printf (Thumb, 22 bytes, Stack size 24 bytes, __2printf.o(.text))

                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                          • Max Depth = 136 + Unknown Stack Size
                                                                                                                                                                                                                                                          • Call Chain = __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                          • >>   _printf_char_file +
                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                            • >>   _printf_char_file
                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                            • >>   custom_svc_add -
                                                                                                                                                                                                                                                            • >>   app_delete_advertising -
                                                                                                                                                                                                                                                            • >>   gapm_cmp_evt -
                                                                                                                                                                                                                                                            • >>   gapm_callback -
                                                                                                                                                                                                                                                            • >>   gapc_callback -
                                                                                                                                                                                                                                                            • >>   pwm_freq_to_period -
                                                                                                                                                                                                                                                            • >>   nvds_erase -
                                                                                                                                                                                                                                                            • >>   slave_send_data -
                                                                                                                                                                                                                                                            • >>   custom_svc_cb_event_sent -
                                                                                                                                                                                                                                                            • >>   custom_svc_cb_att_val_set -
                                                                                                                                                                                                                                                            • >>   custom_svc_cb_att_read_get -
                                                                                                                                                                                                                                                            • >>   gapc_encrypt_req_ind_handler -
                                                                                                                                                                                                                                                            • >>   gapc_encrypt_ind_handler -
                                                                                                                                                                                                                                                            • >>   gapc_bond_req_ind_handler -
                                                                                                                                                                                                                                                            • >>   gapc_bond_ind_handler -
                                                                                                                                                                                                                                                            • >>   xc_system_param_check -
                                                                                                                                                                                                                                                            • >>   nvds_space_init -
                                                                                                                                                                                                                                                            • >>   flash_init -
                                                                                                                                                                                                                                                            • >>   board_init -
                                                                                                                                                                                                                                                            • >>   adc_intr_callback -
                                                                                                                                                                                                                                                            • >>   xc_ota_schedule -
                                                                                                                                                                                                                                                            • >>   WDT_Handler -
                                                                                                                                                                                                                                                            • >>   uart_user_handler -
                                                                                                                                                                                                                                                            • >>   ota_slave_send_data -
                                                                                                                                                                                                                                                            • >>   ble_flash_handle +
                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                              • >>   custom_svc_add +
                                                                                                                                                                                                                                                              • >>   app_delete_advertising +
                                                                                                                                                                                                                                                              • >>   gapm_cmp_evt +
                                                                                                                                                                                                                                                              • >>   gapm_callback +
                                                                                                                                                                                                                                                              • >>   gapc_callback +
                                                                                                                                                                                                                                                              • >>   pwm_freq_to_period +
                                                                                                                                                                                                                                                              • >>   nvds_erase +
                                                                                                                                                                                                                                                              • >>   slave_send_data +
                                                                                                                                                                                                                                                              • >>   custom_svc_cb_event_sent +
                                                                                                                                                                                                                                                              • >>   custom_svc_cb_att_val_set +
                                                                                                                                                                                                                                                              • >>   custom_svc_cb_att_read_get +
                                                                                                                                                                                                                                                              • >>   gapc_encrypt_req_ind_handler +
                                                                                                                                                                                                                                                              • >>   gapc_encrypt_ind_handler +
                                                                                                                                                                                                                                                              • >>   gapc_bond_req_ind_handler +
                                                                                                                                                                                                                                                              • >>   gapc_bond_ind_handler +
                                                                                                                                                                                                                                                              • >>   xc_system_param_check +
                                                                                                                                                                                                                                                              • >>   nvds_space_init +
                                                                                                                                                                                                                                                              • >>   flash_init +
                                                                                                                                                                                                                                                              • >>   board_init +
                                                                                                                                                                                                                                                              • >>   adc_intr_callback +
                                                                                                                                                                                                                                                              • >>   xc_ota_schedule +
                                                                                                                                                                                                                                                              • >>   WDT_Handler +
                                                                                                                                                                                                                                                              • >>   uart_user_handler +
                                                                                                                                                                                                                                                              • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                              • >>   rf433_output_code +
                                                                                                                                                                                                                                                              • >>   ota_slave_send_data +
                                                                                                                                                                                                                                                              • >>   ble_flash_handle
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              _printf_pre_padding (Thumb, 44 bytes, Stack size 16 bytes, _printf_pad.o(.text)) +

                                                                                                                                                                                                                                                              _printf_pre_padding (Thumb, 44 bytes, Stack size 16 bytes, _printf_pad.o(.text))

                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                              • Max Depth = 16
                                                                                                                                                                                                                                                              • Call Chain = _printf_pre_padding
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                              • >>   _printf_fp_infnan -
                                                                                                                                                                                                                                                              • >>   _printf_fp_hex_real -
                                                                                                                                                                                                                                                              • >>   _printf_fp_dec_real -
                                                                                                                                                                                                                                                              • >>   _printf_wctomb -
                                                                                                                                                                                                                                                              • >>   _printf_int_common -
                                                                                                                                                                                                                                                              • >>   _printf_str +
                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                • >>   _printf_wctomb +
                                                                                                                                                                                                                                                                • >>   _printf_int_common +
                                                                                                                                                                                                                                                                • >>   _printf_str +
                                                                                                                                                                                                                                                                • >>   _printf_fp_infnan +
                                                                                                                                                                                                                                                                • >>   _printf_fp_hex_real
                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                _printf_post_padding (Thumb, 34 bytes, Stack size 16 bytes, _printf_pad.o(.text)) +

                                                                                                                                                                                                                                                                _printf_post_padding (Thumb, 34 bytes, Stack size 16 bytes, _printf_pad.o(.text))

                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                • Max Depth = 16
                                                                                                                                                                                                                                                                • Call Chain = _printf_post_padding
                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                • >>   _printf_fp_infnan -
                                                                                                                                                                                                                                                                • >>   _printf_fp_hex_real -
                                                                                                                                                                                                                                                                • >>   _printf_fp_dec_real -
                                                                                                                                                                                                                                                                • >>   _printf_wctomb -
                                                                                                                                                                                                                                                                • >>   _printf_int_common -
                                                                                                                                                                                                                                                                • >>   _printf_str +
                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                  • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                  • >>   _printf_wctomb +
                                                                                                                                                                                                                                                                  • >>   _printf_int_common +
                                                                                                                                                                                                                                                                  • >>   _printf_str +
                                                                                                                                                                                                                                                                  • >>   _printf_fp_infnan +
                                                                                                                                                                                                                                                                  • >>   _printf_fp_hex_real
                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                  _printf_str (Thumb, 82 bytes, Stack size 16 bytes, _printf_str.o(.text)) +

                                                                                                                                                                                                                                                                  _printf_str (Thumb, 82 bytes, Stack size 16 bytes, _printf_str.o(.text))

                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                  • Max Depth = 32
                                                                                                                                                                                                                                                                  • Call Chain = _printf_str ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                  • >>   _printf_post_padding -
                                                                                                                                                                                                                                                                  • >>   _printf_pre_padding +
                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                    • >>   _printf_post_padding +
                                                                                                                                                                                                                                                                    • >>   _printf_pre_padding
                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                    • >>   _printf_cs_common +
                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                      • >>   _printf_cs_common
                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                      _printf_int_dec (Thumb, 90 bytes, Stack size 32 bytes, _printf_dec.o(.text)) +

                                                                                                                                                                                                                                                                      _printf_int_dec (Thumb, 90 bytes, Stack size 32 bytes, _printf_dec.o(.text))

                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                      • Max Depth = 88
                                                                                                                                                                                                                                                                      • Call Chain = _printf_int_dec ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                      • >>   __rt_udiv10 -
                                                                                                                                                                                                                                                                      • >>   _printf_int_common -
                                                                                                                                                                                                                                                                      • >>   _printf_truncate_unsigned -
                                                                                                                                                                                                                                                                      • >>   _printf_truncate_signed +
                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                        • >>   __rt_udiv10 +
                                                                                                                                                                                                                                                                        • >>   _printf_int_common +
                                                                                                                                                                                                                                                                        • >>   _printf_truncate_unsigned +
                                                                                                                                                                                                                                                                        • >>   _printf_truncate_signed
                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                        • >>   _printf_u -
                                                                                                                                                                                                                                                                        • >>   _printf_i -
                                                                                                                                                                                                                                                                        • >>   _printf_d +
                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                          • >>   _printf_u +
                                                                                                                                                                                                                                                                          • >>   _printf_i +
                                                                                                                                                                                                                                                                          • >>   _printf_d
                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                          _printf_longlong_hex (Thumb, 88 bytes, Stack size 24 bytes, _printf_hex_int_ll_ptr.o(.text)) +

                                                                                                                                                                                                                                                                          _printf_longlong_hex (Thumb, 88 bytes, Stack size 24 bytes, _printf_hex_int_ll_ptr.o(.text))

                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                          • Max Depth = 80
                                                                                                                                                                                                                                                                          • Call Chain = _printf_longlong_hex ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                          • >>   _printf_int_common +
                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                            • >>   _printf_int_common
                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                            • >>   _printf_hex_ptr -
                                                                                                                                                                                                                                                                            • >>   _printf_ll_hex -
                                                                                                                                                                                                                                                                            • >>   _printf_int_hex +
                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                              • >>   _printf_hex_ptr +
                                                                                                                                                                                                                                                                              • >>   _printf_ll_hex +
                                                                                                                                                                                                                                                                              • >>   _printf_int_hex
                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                              _printf_int_hex (Thumb, 28 bytes, Stack size 16 bytes, _printf_hex_int_ll_ptr.o(.text)) +

                                                                                                                                                                                                                                                                              _printf_int_hex (Thumb, 28 bytes, Stack size 16 bytes, _printf_hex_int_ll_ptr.o(.text))

                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                              • Max Depth = 96
                                                                                                                                                                                                                                                                              • Call Chain = _printf_int_hex ⇒ _printf_longlong_hex ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                              • >>   _printf_truncate_unsigned -
                                                                                                                                                                                                                                                                              • >>   _printf_longlong_hex +
                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                • >>   _printf_truncate_unsigned +
                                                                                                                                                                                                                                                                                • >>   _printf_longlong_hex
                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                • >>   _printf_x +
                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                  • >>   _printf_x
                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                  _printf_ll_hex (Thumb, 10 bytes, Stack size 0 bytes, _printf_hex_int_ll_ptr.o(.text)) +

                                                                                                                                                                                                                                                                                  _printf_ll_hex (Thumb, 10 bytes, Stack size 0 bytes, _printf_hex_int_ll_ptr.o(.text))

                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                  • Max Depth = 80
                                                                                                                                                                                                                                                                                  • Call Chain = _printf_ll_hex ⇒ _printf_longlong_hex ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                  • >>   _printf_longlong_hex +
                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                    • >>   _printf_longlong_hex
                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                    • >>   _printf_llx +
                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                      • >>   _printf_llx
                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                      _printf_hex_ptr (Thumb, 22 bytes, Stack size 8 bytes, _printf_hex_int_ll_ptr.o(.text)) +

                                                                                                                                                                                                                                                                                      _printf_hex_ptr (Thumb, 22 bytes, Stack size 8 bytes, _printf_hex_int_ll_ptr.o(.text))

                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                      • Max Depth = 88
                                                                                                                                                                                                                                                                                      • Call Chain = _printf_hex_ptr ⇒ _printf_longlong_hex ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                      • >>   _printf_longlong_hex +
                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                        • >>   _printf_longlong_hex
                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                        • >>   _printf_p +
                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                          • >>   _printf_p
                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                          __printf (Thumb, 386 bytes, Stack size 32 bytes, __printf_flags_ss_wp.o(.text)) +

                                                                                                                                                                                                                                                                                          __printf (Thumb, 386 bytes, Stack size 32 bytes, __printf_flags_ss_wp.o(.text))

                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                          • Max Depth = 32 + Unknown Stack Size
                                                                                                                                                                                                                                                                                          • Call Chain = __printf
                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                          • >>   _printf_percent -
                                                                                                                                                                                                                                                                                          • >>   _is_digit +
                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                            • >>   _printf_percent +
                                                                                                                                                                                                                                                                                            • >>   _is_digit
                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                            • >>   _printf_char_common +
                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                              • >>   _printf_char_common
                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              memcmp (Thumb, 90 bytes, Stack size 8 bytes, memcmp.o(.text)) +

                                                                                                                                                                                                                                                                                              memcmp (Thumb, 90 bytes, Stack size 8 bytes, memcmp.o(.text))

                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                              • Call Chain = memcmp
                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                              • >>   nvds_is_magic_number_ok -
                                                                                                                                                                                                                                                                                              • >>   nvds_put -
                                                                                                                                                                                                                                                                                              • >>   gapc_encrypt_req_ind_handler +
                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                • >>   nvds_is_magic_number_ok +
                                                                                                                                                                                                                                                                                                • >>   nvds_put +
                                                                                                                                                                                                                                                                                                • >>   gapc_encrypt_req_ind_handler
                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                __aeabi_memcpy (Thumb, 130 bytes, Stack size 24 bytes, rt_memcpy.o(.text)) +

                                                                                                                                                                                                                                                                                                __aeabi_memcpy (Thumb, 130 bytes, Stack size 24 bytes, rt_memcpy.o(.text))

                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                • Max Depth = 24
                                                                                                                                                                                                                                                                                                • Call Chain = __aeabi_memcpy
                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                • >>   __aeabi_memcpy4 +
                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memcpy4
                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                  • >>   app_set_adv_data -
                                                                                                                                                                                                                                                                                                  • >>   app_init -
                                                                                                                                                                                                                                                                                                  • >>   app_get_dev_name -
                                                                                                                                                                                                                                                                                                  • >>   gapm_callback -
                                                                                                                                                                                                                                                                                                  • >>   nvds_purge -
                                                                                                                                                                                                                                                                                                  • >>   gapc_encrypt_req_ind_handler -
                                                                                                                                                                                                                                                                                                  • >>   gapc_bond_req_ind_handler -
                                                                                                                                                                                                                                                                                                  • >>   set_single_addr_name +
                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                    • >>   app_set_adv_data +
                                                                                                                                                                                                                                                                                                    • >>   app_init +
                                                                                                                                                                                                                                                                                                    • >>   app_get_dev_name +
                                                                                                                                                                                                                                                                                                    • >>   gapm_callback +
                                                                                                                                                                                                                                                                                                    • >>   nvds_purge +
                                                                                                                                                                                                                                                                                                    • >>   gapc_encrypt_req_ind_handler +
                                                                                                                                                                                                                                                                                                    • >>   gapc_bond_req_ind_handler +
                                                                                                                                                                                                                                                                                                    • >>   set_single_addr_name
                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                    __rt_memcpy (Thumb, 0 bytes, Stack size 24 bytes, rt_memcpy.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                    __rt_memcpy (Thumb, 0 bytes, Stack size 24 bytes, rt_memcpy.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                    __aeabi_memset (Thumb, 18 bytes, Stack size 8 bytes, aeabi_memset.o(.text)) +

                                                                                                                                                                                                                                                                                                    __aeabi_memset (Thumb, 18 bytes, Stack size 8 bytes, aeabi_memset.o(.text))

                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                    • Call Chain = __aeabi_memset
                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                    • >>   _memset (via Veneer) +
                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                      • >>   _memset (via Veneer)
                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                      • >>   set_single_addr_name +
                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                        • >>   set_single_addr_name
                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                        __use_two_region_memory (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                        __use_two_region_memory (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                        __rt_heap_escrow$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                        __rt_heap_escrow$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                        __rt_heap_expand$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                        __rt_heap_expand$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                        __aeabi_fdiv (Thumb, 0 bytes, Stack size 20 bytes, fdiv.o(.text)) +

                                                                                                                                                                                                                                                                                                        __aeabi_fdiv (Thumb, 0 bytes, Stack size 20 bytes, fdiv.o(.text))

                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                        • Max Depth = 20
                                                                                                                                                                                                                                                                                                        • Call Chain = __aeabi_fdiv
                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                        • >>   xc_rc32k_soft_calib_set +
                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                          • >>   xc_rc32k_soft_calib_set
                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          _fdiv (Thumb, 334 bytes, Stack size 20 bytes, fdiv.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                          • >>   _frdiv +

                                                                                                                                                                                                                                                                                                            _fdiv (Thumb, 334 bytes, Stack size 20 bytes, fdiv.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                            • >>   _frdiv
                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                            _frdiv (Thumb, 8 bytes, Stack size 0 bytes, fdiv.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                                                                                            • >>   _fdiv +

                                                                                                                                                                                                                                                                                                              _frdiv (Thumb, 8 bytes, Stack size 0 bytes, fdiv.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                              [Calls]

                                                                                                                                                                                                                                                                                                              • >>   _fdiv
                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              __aeabi_f2uiz (Thumb, 0 bytes, Stack size 0 bytes, ffixui.o(.text)) -

                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                              • >>   xc_rc32k_soft_calib_set +

                                                                                                                                                                                                                                                                                                                __aeabi_f2uiz (Thumb, 0 bytes, Stack size 0 bytes, ffixui.o(.text)) +

                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                • >>   xc_rc32k_soft_calib_set
                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                _ffixu (Thumb, 48 bytes, Stack size 0 bytes, ffixui.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                _ffixu (Thumb, 48 bytes, Stack size 0 bytes, ffixui.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                __aeabi_i2f_normalise (Thumb, 72 bytes, Stack size 0 bytes, fflti.o(.text)) -

                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                • >>   __aeabi_ui2f -
                                                                                                                                                                                                                                                                                                                • >>   __aeabi_i2f +

                                                                                                                                                                                                                                                                                                                  __aeabi_i2f_normalise (Thumb, 72 bytes, Stack size 0 bytes, fflti.o(.text)) +

                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_ui2f +
                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_i2f
                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  __aeabi_i2f (Thumb, 16 bytes, Stack size 0 bytes, fflti.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                  [Calls]

                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_i2f_normalise +

                                                                                                                                                                                                                                                                                                                    __aeabi_i2f (Thumb, 16 bytes, Stack size 0 bytes, fflti.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                    [Calls]

                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_i2f_normalise
                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                    _fflt (Thumb, 0 bytes, Stack size 0 bytes, fflti.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                    _fflt (Thumb, 0 bytes, Stack size 0 bytes, fflti.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                    __aeabi_ui2f (Thumb, 6 bytes, Stack size 0 bytes, fflti.o(.text)) -

                                                                                                                                                                                                                                                                                                                    [Calls]

                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_i2f_normalise +

                                                                                                                                                                                                                                                                                                                      __aeabi_ui2f (Thumb, 6 bytes, Stack size 0 bytes, fflti.o(.text)) +

                                                                                                                                                                                                                                                                                                                      [Calls]

                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_i2f_normalise
                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                      • >>   xc_rc32k_soft_calib_set +
                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                        • >>   xc_rc32k_soft_calib_set
                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                        _ffltu (Thumb, 0 bytes, Stack size 0 bytes, fflti.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                        _ffltu (Thumb, 0 bytes, Stack size 0 bytes, fflti.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                        _printf_truncate_signed (Thumb, 18 bytes, Stack size 0 bytes, _printf_truncate.o(.text)) -

                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                        • >>   _printf_int_dec +

                                                                                                                                                                                                                                                                                                                          _printf_truncate_signed (Thumb, 18 bytes, Stack size 0 bytes, _printf_truncate.o(.text)) +

                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                          • >>   _printf_int_dec
                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                          _printf_truncate_unsigned (Thumb, 18 bytes, Stack size 0 bytes, _printf_truncate.o(.text)) -

                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                          • >>   _printf_int_oct -
                                                                                                                                                                                                                                                                                                                          • >>   _printf_int_hex -
                                                                                                                                                                                                                                                                                                                          • >>   _printf_int_dec +

                                                                                                                                                                                                                                                                                                                            _printf_truncate_unsigned (Thumb, 18 bytes, Stack size 0 bytes, _printf_truncate.o(.text)) +

                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                            • >>   _printf_int_oct +
                                                                                                                                                                                                                                                                                                                            • >>   _printf_int_hex +
                                                                                                                                                                                                                                                                                                                            • >>   _printf_int_dec
                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                            _printf_int_common (Thumb, 176 bytes, Stack size 40 bytes, _printf_intcommon.o(.text)) +

                                                                                                                                                                                                                                                                                                                            _printf_int_common (Thumb, 176 bytes, Stack size 40 bytes, _printf_intcommon.o(.text))

                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                            • Max Depth = 56
                                                                                                                                                                                                                                                                                                                            • Call Chain = _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                            • >>   _printf_post_padding -
                                                                                                                                                                                                                                                                                                                            • >>   _printf_pre_padding +
                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                              • >>   _printf_post_padding +
                                                                                                                                                                                                                                                                                                                              • >>   _printf_pre_padding
                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                              • >>   _printf_longlong_oct -
                                                                                                                                                                                                                                                                                                                              • >>   _printf_longlong_dec -
                                                                                                                                                                                                                                                                                                                              • >>   _printf_longlong_hex -
                                                                                                                                                                                                                                                                                                                              • >>   _printf_int_dec +
                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                • >>   _printf_longlong_oct +
                                                                                                                                                                                                                                                                                                                                • >>   _printf_longlong_dec +
                                                                                                                                                                                                                                                                                                                                • >>   _printf_longlong_hex +
                                                                                                                                                                                                                                                                                                                                • >>   _printf_int_dec
                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                _printf_charcount (Thumb, 38 bytes, Stack size 0 bytes, _printf_charcount.o(.text)) -

                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                • >>   _printf_n +

                                                                                                                                                                                                                                                                                                                                  _printf_charcount (Thumb, 38 bytes, Stack size 0 bytes, _printf_charcount.o(.text)) +

                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                  • >>   _printf_n
                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                  _printf_cs_common (Thumb, 22 bytes, Stack size 8 bytes, _printf_char.o(.text)) +

                                                                                                                                                                                                                                                                                                                                  _printf_cs_common (Thumb, 22 bytes, Stack size 8 bytes, _printf_char.o(.text))

                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                  • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                  • Call Chain = _printf_cs_common ⇒ _printf_str ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                  • >>   _printf_mbtowc (Weak Reference) -
                                                                                                                                                                                                                                                                                                                                  • >>   _printf_str +
                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                    • >>   _printf_mbtowc (Weak Reference) +
                                                                                                                                                                                                                                                                                                                                    • >>   _printf_str
                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                    • >>   _printf_string -
                                                                                                                                                                                                                                                                                                                                    • >>   _printf_char +
                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                      • >>   _printf_string +
                                                                                                                                                                                                                                                                                                                                      • >>   _printf_char
                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                      _printf_char (Thumb, 16 bytes, Stack size 0 bytes, _printf_char.o(.text)) +

                                                                                                                                                                                                                                                                                                                                      _printf_char (Thumb, 16 bytes, Stack size 0 bytes, _printf_char.o(.text))

                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                      • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                      • Call Chain = _printf_char ⇒ _printf_cs_common ⇒ _printf_str ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                      • >>   _printf_cs_common +
                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                        • >>   _printf_cs_common
                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                        • >>   _printf_c +
                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                          • >>   _printf_c
                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                          _printf_string (Thumb, 8 bytes, Stack size 0 bytes, _printf_char.o(.text)) +

                                                                                                                                                                                                                                                                                                                                          _printf_string (Thumb, 8 bytes, Stack size 0 bytes, _printf_char.o(.text))

                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                          • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                          • Call Chain = _printf_string ⇒ _printf_cs_common ⇒ _printf_str ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                          • >>   _printf_cs_common +
                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                            • >>   _printf_cs_common
                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                            • >>   _printf_s +
                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                              • >>   _printf_s
                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                              _printf_char_file (Thumb, 34 bytes, Stack size 16 bytes, _printf_char_file.o(.text)) +

                                                                                                                                                                                                                                                                                                                                              _printf_char_file (Thumb, 34 bytes, Stack size 16 bytes, _printf_char_file.o(.text))

                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                              • Max Depth = 112 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                              • Call Chain = _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                              • >>   ferror -
                                                                                                                                                                                                                                                                                                                                              • >>   _printf_char_common +
                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                • >>   ferror +
                                                                                                                                                                                                                                                                                                                                                • >>   _printf_char_common
                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                • >>   __2printf -
                                                                                                                                                                                                                                                                                                                                                • >>   printf +
                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                  • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                  • >>   printf
                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                  _printf_wctomb (Thumb, 182 bytes, Stack size 56 bytes, _printf_wctomb.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                  _printf_wctomb (Thumb, 182 bytes, Stack size 56 bytes, _printf_wctomb.o(.text))

                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                  • Call Chain = _printf_wctomb ⇒ _wcrtomb ⇒ __rt_ctype_table
                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                  • >>   _wcrtomb -
                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_post_padding -
                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_pre_padding +
                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_post_padding +
                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_pre_padding +
                                                                                                                                                                                                                                                                                                                                                    • >>   _wcrtomb
                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_lcs_common +
                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_lcs_common
                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                      _printf_longlong_dec (Thumb, 94 bytes, Stack size 32 bytes, _printf_longlong_dec.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                      _printf_longlong_dec (Thumb, 94 bytes, Stack size 32 bytes, _printf_longlong_dec.o(.text))

                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                      • Call Chain = _printf_longlong_dec ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                      • >>   _ll_udiv10 -
                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_int_common +
                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                        • >>   _ll_udiv10 +
                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_int_common
                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_llu -
                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_lld -
                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_lli +
                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_llu +
                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_lld +
                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_lli
                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                          _printf_longlong_oct (Thumb, 68 bytes, Stack size 16 bytes, _printf_oct_int_ll.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                          _printf_longlong_oct (Thumb, 68 bytes, Stack size 16 bytes, _printf_oct_int_ll.o(.text))

                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                          • Call Chain = _printf_longlong_oct ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_int_common +
                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_int_common
                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_ll_oct -
                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_int_oct +
                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_ll_oct +
                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_int_oct
                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                              _printf_int_oct (Thumb, 24 bytes, Stack size 8 bytes, _printf_oct_int_ll.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                              _printf_int_oct (Thumb, 24 bytes, Stack size 8 bytes, _printf_oct_int_ll.o(.text))

                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                              • Call Chain = _printf_int_oct ⇒ _printf_longlong_oct ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_longlong_oct -
                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_truncate_unsigned +
                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_longlong_oct +
                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_truncate_unsigned
                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_o +
                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_o
                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                  _printf_ll_oct (Thumb, 10 bytes, Stack size 0 bytes, _printf_oct_int_ll.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                  _printf_ll_oct (Thumb, 10 bytes, Stack size 0 bytes, _printf_oct_int_ll.o(.text))

                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = _printf_ll_oct ⇒ _printf_longlong_oct ⇒ _printf_int_common ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_longlong_oct +
                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_longlong_oct
                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_llo +
                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_llo
                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                      __rt_udiv10 (Thumb, 40 bytes, Stack size 0 bytes, rtudiv10.o(.text)) -

                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_fp_dec_real -
                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_int_dec +

                                                                                                                                                                                                                                                                                                                                                                        __rt_udiv10 (Thumb, 40 bytes, Stack size 0 bytes, rtudiv10.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_int_dec
                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                        _ll_udiv10 (Thumb, 122 bytes, Stack size 16 bytes, lludiv10.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                        _ll_udiv10 (Thumb, 122 bytes, Stack size 16 bytes, lludiv10.o(.text))

                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = _ll_udiv10
                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                        • >>   _fp_digits -
                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_longlong_dec +
                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                          • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_longlong_dec
                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                          __lib_sel_fp_printf (Thumb, 2 bytes, Stack size 0 bytes, _printf_fp_dec.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                          __lib_sel_fp_printf (Thumb, 2 bytes, Stack size 0 bytes, _printf_fp_dec.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                          _printf_fp_dec_real (Thumb, 620 bytes, Stack size 96 bytes, _printf_fp_dec.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                          _printf_fp_dec_real (Thumb, 620 bytes, Stack size 96 bytes, _printf_fp_dec.o(.text))

                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 368
                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = _printf_fp_dec_real ⇒ _fp_digits ⇒ _btod_etento ⇒ _btod_emul ⇒ btod_internal_mul ⇒ __ARM_common_ll_muluu
                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_fp_infnan -
                                                                                                                                                                                                                                                                                                                                                                          • >>   __rt_locale -
                                                                                                                                                                                                                                                                                                                                                                          • >>   _fp_digits -
                                                                                                                                                                                                                                                                                                                                                                          • >>   __rt_udiv10 -
                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_post_padding -
                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_pre_padding -
                                                                                                                                                                                                                                                                                                                                                                          • >>   __ARM_fpclassify +
                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                            • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                            • >>   __rt_udiv10 +
                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_post_padding +
                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_pre_padding +
                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_fpclassify +
                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_fp_infnan +
                                                                                                                                                                                                                                                                                                                                                                            • >>   __rt_locale

                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                            • printf1.o(x$fpl$printf1)
                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                            _printf_fp_hex_real (Thumb, 718 bytes, Stack size 72 bytes, _printf_fp_hex.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                            _printf_fp_hex_real (Thumb, 718 bytes, Stack size 72 bytes, _printf_fp_hex.o(.text))

                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = _printf_fp_hex_real ⇒ _printf_fp_infnan ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_fp_infnan -
                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_idivmod (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_post_padding -
                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_pre_padding -
                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_fpclassify +
                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_idivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_post_padding +
                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_pre_padding +
                                                                                                                                                                                                                                                                                                                                                                              • >>   __ARM_fpclassify +
                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_fp_infnan

                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                              • printf2.o(x$fpl$printf2)
                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                              _printf_char_common (Thumb, 32 bytes, Stack size 64 bytes, _printf_char_common.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                              _printf_char_common (Thumb, 32 bytes, Stack size 64 bytes, _printf_char_common.o(.text))

                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 96 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                              • >>   __printf +
                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                • >>   __printf
                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_char_file +
                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_char_file
                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                  _printf_lcs_common (Thumb, 22 bytes, Stack size 8 bytes, _printf_wchar.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                  _printf_lcs_common (Thumb, 22 bytes, Stack size 8 bytes, _printf_wchar.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = _printf_lcs_common ⇒ _printf_wctomb ⇒ _wcrtomb ⇒ __rt_ctype_table
                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_wc (Weak Reference) -
                                                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_wctomb +
                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_wctomb +
                                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_wc (Weak Reference)
                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_wstring -
                                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_wchar +
                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_wstring +
                                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_wchar
                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                      _printf_wchar (Thumb, 16 bytes, Stack size 0 bytes, _printf_wchar.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                      _printf_wchar (Thumb, 16 bytes, Stack size 0 bytes, _printf_wchar.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = _printf_wchar ⇒ _printf_lcs_common ⇒ _printf_wctomb ⇒ _wcrtomb ⇒ __rt_ctype_table
                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_lcs_common +
                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_lcs_common
                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_lc +
                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_lc
                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                          _printf_wstring (Thumb, 8 bytes, Stack size 0 bytes, _printf_wchar.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                          _printf_wstring (Thumb, 8 bytes, Stack size 0 bytes, _printf_wchar.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = _printf_wstring ⇒ _printf_lcs_common ⇒ _printf_wctomb ⇒ _wcrtomb ⇒ __rt_ctype_table
                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_lcs_common +
                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_lcs_common
                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_ls +
                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_ls
                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                              _wcrtomb (Thumb, 64 bytes, Stack size 16 bytes, _wcrtomb.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                              _wcrtomb (Thumb, 64 bytes, Stack size 16 bytes, _wcrtomb.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = _wcrtomb ⇒ __rt_ctype_table
                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                              • >>   __rt_ctype_table +
                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                • >>   __rt_ctype_table
                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_wctomb +
                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_wctomb
                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                  __user_setup_stackheap (Thumb, 62 bytes, Stack size 8 bytes, sys_stackheap_outer.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                  __user_setup_stackheap (Thumb, 62 bytes, Stack size 8 bytes, sys_stackheap_outer.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = __user_setup_stackheap
                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __user_initial_stackheap -
                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __user_perproc_libspace +
                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __user_initial_stackheap +
                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __user_perproc_libspace
                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __rt_entry_sh +
                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __rt_entry_sh
                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                      __rt_ctype_table (Thumb, 16 bytes, Stack size 8 bytes, rt_ctype_table.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                      __rt_ctype_table (Thumb, 16 bytes, Stack size 8 bytes, rt_ctype_table.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = __rt_ctype_table
                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __rt_locale +
                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __rt_locale
                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _wcrtomb +
                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _wcrtomb
                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                          __rt_locale (Thumb, 8 bytes, Stack size 0 bytes, rt_locale_intlibspace.o(.text)) -

                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __rt_ctype_table -
                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_fp_dec_real -
                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __rt_lib_init_lc_common +

                                                                                                                                                                                                                                                                                                                                                                                                            __rt_locale (Thumb, 8 bytes, Stack size 0 bytes, rt_locale_intlibspace.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __rt_lib_init_lc_common +
                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __rt_ctype_table
                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                            _printf_fp_infnan (Thumb, 120 bytes, Stack size 24 bytes, _printf_fp_infnan.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                            _printf_fp_infnan (Thumb, 120 bytes, Stack size 24 bytes, _printf_fp_infnan.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = _printf_fp_infnan ⇒ _printf_post_padding
                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_post_padding -
                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_pre_padding +
                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_post_padding +
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_pre_padding
                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_fp_hex_real -
                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_fp_hex_real
                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                _btod_etento (Thumb, 210 bytes, Stack size 72 bytes, bigflt0.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                _btod_etento (Thumb, 210 bytes, Stack size 72 bytes, bigflt0.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 176
                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = _btod_etento ⇒ _btod_emul ⇒ btod_internal_mul ⇒ __ARM_common_ll_muluu
                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _btod_ediv -
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _btod_emul -
                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_idivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_idivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _btod_ediv +
                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _btod_emul
                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _fp_digits
                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                    _btod_d2e (Thumb, 64 bytes, Stack size 8 bytes, btod.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                    _btod_d2e (Thumb, 64 bytes, Stack size 8 bytes, btod.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = _btod_d2e
                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _fp_digits
                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                      _btod_emul (Thumb, 28 bytes, Stack size 24 bytes, btod.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                      _btod_emul (Thumb, 28 bytes, Stack size 24 bytes, btod.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = _btod_emul ⇒ btod_internal_mul ⇒ __ARM_common_ll_muluu
                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   btod_internal_mul +
                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   btod_internal_mul
                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _btod_etento -
                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _btod_etento
                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                          _btod_emuld (Thumb, 144 bytes, Stack size 56 bytes, btod.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   btod_internal_mul +

                                                                                                                                                                                                                                                                                                                                                                                                                            _btod_emuld (Thumb, 144 bytes, Stack size 56 bytes, btod.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   btod_internal_mul
                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                            _btod_ediv (Thumb, 26 bytes, Stack size 24 bytes, btod.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                            _btod_ediv (Thumb, 26 bytes, Stack size 24 bytes, btod.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = _btod_ediv ⇒ btod_internal_div
                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   btod_internal_div +
                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   btod_internal_div
                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_etento -
                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _fp_digits +
                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _btod_etento
                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                _btod_edivd (Thumb, 124 bytes, Stack size 56 bytes, btod.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   btod_internal_div +

                                                                                                                                                                                                                                                                                                                                                                                                                                  _btod_edivd (Thumb, 124 bytes, Stack size 56 bytes, btod.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]

                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   btod_internal_div
                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                  exit (Thumb, 16 bytes, Stack size 8 bytes, exit.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                  exit (Thumb, 16 bytes, Stack size 8 bytes, exit.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = exit
                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _call_atexit_fns (Weak Reference) -
                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __rt_exit +
                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __rt_exit +
                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _call_atexit_fns (Weak Reference)
                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __rt_entry_main +
                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __rt_entry_main
                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                      __user_libspace (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                      __user_libspace (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                      __user_perproc_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __user_setup_stackheap +

                                                                                                                                                                                                                                                                                                                                                                                                                                        __user_perproc_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __user_setup_stackheap
                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                        __user_perthread_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                        __user_perthread_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                        strcmp (Thumb, 132 bytes, Stack size 16 bytes, strcmp.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                        strcmp (Thumb, 132 bytes, Stack size 16 bytes, strcmp.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = strcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _get_lc_numeric -
                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _get_lc_ctype +
                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _get_lc_ctype +
                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _get_lc_numeric
                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                          __decompress (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl2.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                          __decompress (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl2.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                          __decompress1 (Thumb, 86 bytes, Stack size unknown bytes, __dczerorl2.o(.text), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                          __decompress1 (Thumb, 86 bytes, Stack size unknown bytes, __dczerorl2.o(.text), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                          GADC_Handler (Thumb, 14 bytes, Stack size 8 bytes, xc_drv_adc.o(i.GADC_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                          GADC_Handler (Thumb, 14 bytes, Stack size 8 bytes, xc_drv_adc.o(i.GADC_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 168 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = GADC_Handler ⇒ adc_intr_callback ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   adc_intr_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   adc_intr_callback

                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                            • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                            GPIO_Handler (Thumb, 32 bytes, Stack size 8 bytes, xc_drv_gpio.o(i.GPIO_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                            GPIO_Handler (Thumb, 32 bytes, Stack size 8 bytes, xc_drv_gpio.o(i.GPIO_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = GPIO_Handler ⇒ gpio_intr_callback
                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   gpio_intr_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   gpio_intr_callback

                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                              • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                              PWM_Handler (Thumb, 40 bytes, Stack size 8 bytes, xc_drv_pwm.o(i.PWM_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                              PWM_Handler (Thumb, 40 bytes, Stack size 8 bytes, xc_drv_pwm.o(i.PWM_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = PWM_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   pwm_capture_ch2_callback -
                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   pwm_capture_ch1_callback -
                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   pwm_capture_ch0_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   pwm_capture_ch2_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   pwm_capture_ch1_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   pwm_capture_ch0_callback

                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                SysTick_Handler (Thumb, 8 bytes, Stack size 8 bytes, xc_drv_systick.o(i.SysTick_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                SysTick_Handler (Thumb, 8 bytes, Stack size 8 bytes, xc_drv_systick.o(i.SysTick_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = SysTick_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   systick_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   systick_callback

                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                  SystemInit (Thumb, 22 bytes, Stack size 8 bytes, system_xinc.o(i.SystemInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  SystemInit (Thumb, 22 bytes, Stack size 8 bytes, system_xinc.o(i.SystemInit))

                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 20
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = SystemInit ⇒ set_vector
                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   set_vector -
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   WDT_ResetInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   set_vector +
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   WDT_ResetInit

                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • startup_xinc.o(.text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIMER0_Handler (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_timer.o(i.TIMER0_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIMER0_Handler (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_timer.o(i.TIMER0_Handler))
                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIMER1_Handler (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_timer.o(i.TIMER1_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIMER1_Handler (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_timer.o(i.TIMER1_Handler))
                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIMER2_Handler (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_timer.o(i.TIMER2_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIMER2_Handler (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_timer.o(i.TIMER2_Handler))
                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIMER3_Handler (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_timer.o(i.TIMER3_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TIMER3_Handler (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_timer.o(i.TIMER3_Handler))
                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TaskProcess (Thumb, 34 bytes, Stack size 16 bytes, timeslice.o(i.TaskProcess)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                    TaskProcess (Thumb, 34 bytes, Stack size 16 bytes, timeslice.o(i.TaskProcess))

                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = TaskProcess
                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                      TaskRemarks (Thumb, 40 bytes, Stack size 12 bytes, timeslice.o(i.TaskRemarks)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      TaskRemarks (Thumb, 40 bytes, Stack size 12 bytes, timeslice.o(i.TaskRemarks))

                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 12
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = TaskRemarks

                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   timer1_callback (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                      UART0_Handler (Thumb, 10 bytes, Stack size 8 bytes, xc_drv_uart.o(i.UART0_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      UART0_Handler (Thumb, 10 bytes, Stack size 8 bytes, xc_drv_uart.o(i.UART0_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 168 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = UART0_Handler ⇒ uart_user_handler ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   uart_user_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   uart_user_handler

                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                        UART1_Handler (Thumb, 10 bytes, Stack size 8 bytes, xc_drv_uart.o(i.UART1_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                        UART1_Handler (Thumb, 10 bytes, Stack size 8 bytes, xc_drv_uart.o(i.UART1_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 168 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = UART1_Handler ⇒ uart_user_handler ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   uart_user_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   uart_user_handler

                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                          UART2_Handler (Thumb, 10 bytes, Stack size 8 bytes, xc_drv_uart.o(i.UART2_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          UART2_Handler (Thumb, 10 bytes, Stack size 8 bytes, xc_drv_uart.o(i.UART2_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 168 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = UART2_Handler ⇒ uart_user_handler ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   uart_user_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   uart_user_handler

                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                            WDT_Handler (Thumb, 14 bytes, Stack size 8 bytes, xc_drv_wdt.o(i.WDT_Handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                            WDT_Handler (Thumb, 14 bytes, Stack size 8 bytes, xc_drv_wdt.o(i.WDT_Handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 144 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = WDT_Handler ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_wdt_refresh -
                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_wdt_refresh +
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • startup_xinc.o(RESET)
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                              _433_fun (Thumb, 168 bytes, Stack size 16 bytes, rf433.o(i._433_fun)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              _433_fun (Thumb, 126 bytes, Stack size 16 bytes, rf433.o(i._433_fun))

                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = _433_fun
                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_write_pin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_toggle_pin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_read_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_write_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_toggle_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_read_pin

                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   scan_433
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                __ARM_common_ll_muluu (Thumb, 48 bytes, Stack size 24 bytes, btod.o(i.__ARM_common_ll_muluu)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                __ARM_common_ll_muluu (Thumb, 48 bytes, Stack size 24 bytes, btod.o(i.__ARM_common_ll_muluu))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = __ARM_common_ll_muluu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   btod_internal_mul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   btod_internal_mul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  __ARM_common_switch8 (Thumb, 26 bytes, Stack size 8 bytes, arch_main.o(i.__ARM_common_switch8)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  __ARM_common_switch8 (Thumb, 26 bytes, Stack size 8 bytes, arch_main.o(i.__ARM_common_switch8))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = __ARM_common_switch8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_clock_bbpll_freq_cfg -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gapc_bond_ind_handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   flash_size_and_type_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   set_single_addr_name +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_clock_bbpll_freq_cfg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gapc_bond_ind_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   flash_size_and_type_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   set_single_addr_name
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __ARM_fpclassify (Thumb, 40 bytes, Stack size 0 bytes, fpclassify.o(i.__ARM_fpclassify)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_fp_hex_real -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _printf_fp_dec_real +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      __ARM_fpclassify (Thumb, 40 bytes, Stack size 0 bytes, fpclassify.o(i.__ARM_fpclassify)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_fp_hex_real
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _is_digit (Thumb, 14 bytes, Stack size 0 bytes, __printf_wp.o(i._is_digit)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __printf +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _is_digit (Thumb, 14 bytes, Stack size 0 bytes, __printf_wp.o(i._is_digit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _sys_exit (Thumb, 2 bytes, Stack size 0 bytes, system_xinc.o(i._sys_exit)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __rt_exit_exit +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _sys_exit (Thumb, 2 bytes, Stack size 0 bytes, system_xinc.o(i._sys_exit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __rt_exit_exit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          adc_intr_callback (Thumb, 108 bytes, Stack size 24 bytes, xc_drv_adc.o(i.adc_intr_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          adc_intr_callback (Thumb, 108 bytes, Stack size 24 bytes, xc_drv_adc.o(i.adc_intr_callback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 160 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = adc_intr_callback ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_adc_data_average -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_adc_data_average +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   GADC_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   GADC_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              app_create_advertising (Thumb, 66 bytes, Stack size 56 bytes, app_task.o(i.app_create_advertising)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              app_create_advertising (Thumb, 66 bytes, Stack size 56 bytes, app_task.o(i.app_create_advertising))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = app_create_advertising
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_ble_advertise_create -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_memclr4 (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_ble_advertise_create +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memclr4 (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   gapm_cmp_evt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gapm_cmp_evt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  app_delete_advertising (Thumb, 32 bytes, Stack size 8 bytes, app_task.o(i.app_delete_advertising)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  app_delete_advertising (Thumb, 32 bytes, Stack size 8 bytes, app_task.o(i.app_delete_advertising))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 144 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = app_delete_advertising ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_ble_activity_delete -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_ble_activity_delete +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gapm_cmp_evt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   gapm_cmp_evt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      app_get_dev_name (Thumb, 34 bytes, Stack size 8 bytes, app_task.o(i.app_get_dev_name)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      app_get_dev_name (Thumb, 34 bytes, Stack size 8 bytes, app_task.o(i.app_get_dev_name))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = app_get_dev_name ⇒ __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   gapc_get_device_info_req_ind +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   gapc_get_device_info_req_ind
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          app_init (Thumb, 50 bytes, Stack size 8 bytes, app_task.o(i.app_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          app_init (Thumb, 50 bytes, Stack size 8 bytes, app_task.o(i.app_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = app_init ⇒ __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_ble_gapm_reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   ke_task_create (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   ke_state_set (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memclr (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_ble_gapm_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   ke_task_create (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   ke_state_set (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memclr (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   bluetooth_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   bluetooth_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              app_key_callback_handler (Thumb, 56 bytes, Stack size 8 bytes, rf433.o(i.app_key_callback_handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              app_key_callback_handler (Thumb, 56 bytes, Stack size 8 bytes, rf433.o(i.app_key_callback_handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = app_key_callback_handler

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • key.o(i.app_key_init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              app_key_init (Thumb, 38 bytes, Stack size 16 bytes, key.o(i.app_key_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              app_key_init (Thumb, 38 bytes, Stack size 16 bytes, key.o(i.app_key_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 36
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = app_key_init ⇒ xc_gpio_init ⇒ xc_gpio_pull_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   board_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  app_key_scan (Thumb, 78 bytes, Stack size 16 bytes, key.o(i.app_key_scan)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  app_key_scan (Thumb, 78 bytes, Stack size 16 bytes, key.o(i.app_key_scan))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = app_key_scan ⇒ key_check_process ⇒ app_new_key_detection ⇒ app_key_click_detection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   key_check_process (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gpio_key_check -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   key_click_state_reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   get_click_event +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gpio_key_check +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   key_click_state_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   get_click_event +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   key_check_process (via Veneer)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • timeslice.o(.data)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    app_op_flash (Thumb, 42 bytes, Stack size 4 bytes, ota_flash_interface.o(i.app_op_flash)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    app_op_flash (Thumb, 42 bytes, Stack size 4 bytes, ota_flash_interface.o(i.app_op_flash))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 12
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = app_op_flash ⇒ ble_flash_later_write_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ble_flash_later_write_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ble_flash_later_page_erase +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ble_flash_later_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ble_flash_later_page_erase

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • timeslice.o(.data)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      app_op_flash_on (Thumb, 20 bytes, Stack size 8 bytes, ota_flash_interface.o(i.app_op_flash_on))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = app_op_flash_on ⇒ wright_user_data ⇒ get_checksum
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   wright_user_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   wright_user_data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • timeslice.o(.data)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        app_set_adv_data (Thumb, 76 bytes, Stack size 40 bytes, app_task.o(i.app_set_adv_data)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        app_set_adv_data (Thumb, 76 bytes, Stack size 40 bytes, app_task.o(i.app_set_adv_data))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = app_set_adv_data ⇒ __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_ble_set_adv_data -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_memclr4 (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_ble_set_adv_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memclr4 (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   gapm_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   gapm_callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            app_start_advertising (Thumb, 54 bytes, Stack size 72 bytes, app_task.o(i.app_start_advertising)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            app_start_advertising (Thumb, 54 bytes, Stack size 72 bytes, app_task.o(i.app_start_advertising))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = app_start_advertising
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_ble_advertise_start -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memclr4 (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_ble_advertise_start +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_memclr4 (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   gapm_cmp_evt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   gapc_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   gapm_cmp_evt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   gapc_callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                app_uart_init (Thumb, 82 bytes, Stack size 32 bytes, arch_main.o(i.app_uart_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                app_uart_init (Thumb, 82 bytes, Stack size 32 bytes, arch_main.o(i.app_uart_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = app_uart_init ⇒ xc_uart_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_uart_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_uart_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   board_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ble_callback (Thumb, 20 bytes, Stack size 8 bytes, uart_1.o(i.ble_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ble_callback (Thumb, 20 bytes, Stack size 8 bytes, uart_1.o(i.ble_callback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = ble_callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   custom_svc_cb_att_val_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   custom_svc_cb_att_val_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ble_flash_handle (Thumb, 128 bytes, Stack size 24 bytes, ota_flash_interface.o(i.ble_flash_handle)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ble_flash_handle (Thumb, 128 bytes, Stack size 24 bytes, ota_flash_interface.o(i.ble_flash_handle))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 352 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = ble_flash_handle ⇒ xc_fmc_spi_flash_write_page ⇒ xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   FMC_SPI_Flash_Erase_Sector (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_write_page (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_erase_page (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   FMC_SPI_Flash_Erase_Sector (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_write_page (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_erase_page (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_ota_schedule +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_ota_schedule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ble_flash_later_page_erase (Thumb, 24 bytes, Stack size 0 bytes, ota_flash_interface.o(i.ble_flash_later_page_erase)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_op_flash +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ble_flash_later_page_erase (Thumb, 24 bytes, Stack size 0 bytes, ota_flash_interface.o(i.ble_flash_later_page_erase)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_op_flash
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ble_flash_later_write_page (Thumb, 40 bytes, Stack size 8 bytes, ota_flash_interface.o(i.ble_flash_later_write_page)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ble_flash_later_write_page (Thumb, 40 bytes, Stack size 8 bytes, ota_flash_interface.o(i.ble_flash_later_write_page))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = ble_flash_later_write_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_op_flash -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   ota_write_flash +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   app_op_flash +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   ota_write_flash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ble_message_process (Thumb, 44 bytes, Stack size 24 bytes, uart_1.o(i.ble_message_process))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = ble_message_process ⇒ scan_uart ⇒ flash_run
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   scan_uart +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   scan_uart

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • timeslice.o(.data)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ble_mode_scan (Thumb, 60 bytes, Stack size 12 bytes, rf433.o(i.ble_mode_scan)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ble_mode_scan (Thumb, 60 bytes, Stack size 12 bytes, rf433.o(i.ble_mode_scan))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 12
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = ble_mode_scan

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • timeslice.o(.data)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bluetooth_init (Thumb, 88 bytes, Stack size 24 bytes, arch_main.o(i.bluetooth_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                bluetooth_init (Thumb, 88 bytes, Stack size 24 bytes, arch_main.o(i.bluetooth_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 536 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = bluetooth_init ⇒ flash_init ⇒ xc_unique_identification_read ⇒ xc_fmc_spi_flash_read ⇒ xc_fmc_spi_flash_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   app_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   rwip_time_get (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   rwip_init (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   rf_tx_power_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   rf_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   modem_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   co_random_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   flash_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   app_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rwip_time_get (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rwip_init (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rf_tx_power_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rf_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   modem_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   co_random_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   flash_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    board_init (Thumb, 66 bytes, Stack size 8 bytes, arch_main.o(i.board_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    board_init (Thumb, 70 bytes, Stack size 8 bytes, arch_main.o(i.board_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 240 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = board_init ⇒ led_gpio_init ⇒ xc_pwm_init ⇒ pwm_freq_to_period ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   switch_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   rom_env_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   rf433_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   led_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   fmc_spi_read -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   clock_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   chx_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   app_key_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   rom_env_host_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   app_uart_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   switch_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   rom_env_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   rf433_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   rf433_decoder_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   led_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   fmc_spi_read +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   clock_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   chx_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   app_key_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   rom_env_host_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   app_uart_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        chx_gpio_init (Thumb, 84 bytes, Stack size 24 bytes, rf433.o(i.chx_gpio_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        chx_gpio_init (Thumb, 84 bytes, Stack size 24 bytes, rf433.o(i.chx_gpio_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 44
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = chx_gpio_init ⇒ xc_gpio_init ⇒ xc_gpio_pull_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_write_pin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_write_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   board_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            clock_init (Thumb, 94 bytes, Stack size 32 bytes, sleep.o(i.clock_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            clock_init (Thumb, 94 bytes, Stack size 32 bytes, sleep.o(i.clock_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 128
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = clock_init ⇒ xc_clock_init_cfg ⇒ xc_clock_hfclk_set ⇒ xc_hfclk_set ⇒ xc_clock_bbpll_freq_cfg ⇒ delay_us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_init_cfg -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_hfclk_in_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_uidivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_clock_init_cfg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_clock_hfclk_in_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_uidivmod (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   board_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                custom_svc_add (Thumb, 98 bytes, Stack size 32 bytes, usr_server.o(i.custom_svc_add)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                custom_svc_add (Thumb, 98 bytes, Stack size 32 bytes, usr_server.o(i.custom_svc_add))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 168 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = custom_svc_add ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_ble_gatt_service16_add -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_ble_gatt_user_srv_register -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_ble_gatt_service16_add +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_ble_gatt_user_srv_register +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gapm_cmp_evt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gapm_cmp_evt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    custom_svc_cb_att_read_get (Thumb, 90 bytes, Stack size 64 bytes, usr_server.o(i.custom_svc_cb_att_read_get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    custom_svc_cb_att_read_get (Thumb, 90 bytes, Stack size 64 bytes, usr_server.o(i.custom_svc_cb_att_read_get))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 200 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = custom_svc_cb_att_read_get ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_ble_gatt_srv_read_cfm -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_ble_gatt_srv_read_cfm +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • usr_server.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      custom_svc_cb_att_val_set (Thumb, 224 bytes, Stack size 48 bytes, usr_server.o(i.custom_svc_cb_att_val_set)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      custom_svc_cb_att_val_set (Thumb, 224 bytes, Stack size 48 bytes, usr_server.o(i.custom_svc_cb_att_val_set))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 224 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = custom_svc_cb_att_val_set ⇒ slave_send_data ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ble_callback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   slave_send_data -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_ble_gatt_srv_write_cfm -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   ble_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   slave_send_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_ble_gatt_srv_write_cfm +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • usr_server.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        custom_svc_cb_event_sent (Thumb, 20 bytes, Stack size 16 bytes, usr_server.o(i.custom_svc_cb_event_sent)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        custom_svc_cb_event_sent (Thumb, 20 bytes, Stack size 16 bytes, usr_server.o(i.custom_svc_cb_event_sent))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 152 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = custom_svc_cb_event_sent ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • usr_server.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delay_us (Thumb, 44 bytes, Stack size 8 bytes, xc_drv_systick.o(i.delay_us)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delay_us (Thumb, 44 bytes, Stack size 8 bytes, xc_drv_systick.o(i.delay_us))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = delay_us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_systick_unit_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_systick_unit_get
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_hfclk_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_bbpll_freq_cfg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_hfclk_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_clock_bbpll_freq_cfg
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              extract32_16 (Thumb, 14 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(i.extract32_16)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_unique_identification_read +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                extract32_16 (Thumb, 14 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(i.extract32_16)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_unique_identification_read
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ferror (Thumb, 6 bytes, Stack size 0 bytes, system_xinc.o(i.ferror)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_char_file +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ferror (Thumb, 6 bytes, Stack size 0 bytes, system_xinc.o(i.ferror)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _printf_char_file
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  flash_init (Thumb, 170 bytes, Stack size 56 bytes, arch_main.o(i.flash_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  flash_init (Thumb, 170 bytes, Stack size 56 bytes, arch_main.o(i.flash_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 512 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = flash_init ⇒ xc_unique_identification_read ⇒ xc_fmc_spi_flash_read ⇒ xc_fmc_spi_flash_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_unique_identification_read -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_init_oprt (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_wake_up (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_ruid (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_rdid (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_space_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   flash_size_and_type_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_idivmod (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memclr (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_unique_identification_read +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_init_oprt (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_wake_up (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_ruid (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_rdid (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   nvds_space_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   flash_size_and_type_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_idivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_memclr (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   bluetooth_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   bluetooth_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      flash_run (Thumb, 14 bytes, Stack size 8 bytes, rf433.o(i.flash_run)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      flash_run (Thumb, 14 bytes, Stack size 8 bytes, rf433.o(i.flash_run))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = flash_run
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   set_TaskComps_timer +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   set_TaskComps_timer
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   scan_uart -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   trigger_check_process +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   scan_uart +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   trigger_check_process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   scan_433
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          flash_size_and_type_get (Thumb, 86 bytes, Stack size 16 bytes, xc_drv_fmc_spi.o(i.flash_size_and_type_get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          flash_size_and_type_get (Thumb, 86 bytes, Stack size 16 bytes, xc_drv_fmc_spi.o(i.flash_size_and_type_get))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = flash_size_and_type_get ⇒ xc_fmc_spi_flash_rdid ⇒ xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_init_oprt (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_wake_up (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_rdid (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __ARM_common_switch8 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_init_oprt (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_flash_wake_up (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_flash_rdid (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_common_switch8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_unique_identification_read -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   nvds_space_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   flash_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_unique_identification_read +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   nvds_space_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   flash_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fmc_spi_read (Thumb, 38 bytes, Stack size 8 bytes, fmc_spi_1.o(i.fmc_spi_read)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fmc_spi_read (Thumb, 38 bytes, Stack size 8 bytes, fmc_spi_1.o(i.fmc_spi_read))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 104
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = fmc_spi_read ⇒ xc_fmc_spi_flash_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_flash_read_page (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   read_user_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_read_page (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   read_user_data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   board_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  get_app_env (Thumb, 4 bytes, Stack size 0 bytes, app_task.o(i.get_app_env)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   slave_send_data -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gapc_bond_ind_handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   ota_slave_send_data +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    get_app_env (Thumb, 4 bytes, Stack size 0 bytes, app_task.o(i.get_app_env)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   slave_send_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gapc_bond_ind_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ota_slave_send_data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    get_fota_env_addr (Thumb, 16 bytes, Stack size 0 bytes, nvds.o(i.get_fota_env_addr)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   nvds_init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      get_fota_env_addr (Thumb, 16 bytes, Stack size 0 bytes, nvds.o(i.get_fota_env_addr)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   nvds_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gpio_intr_callback (Thumb, 52 bytes, Stack size 8 bytes, switch_s.o(i.gpio_intr_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gpio_intr_callback (Thumb, 52 bytes, Stack size 8 bytes, switch_s.o(i.gpio_intr_callback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = gpio_intr_callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   GPIO_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   GPIO_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        gpio_key_check (Thumb, 20 bytes, Stack size 8 bytes, key.o(i.gpio_key_check)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        gpio_key_check (Thumb, 20 bytes, Stack size 8 bytes, key.o(i.gpio_key_check))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = gpio_key_check
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_read_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_read_pin
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_key_scan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_key_scan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            led_gpio_init (Thumb, 54 bytes, Stack size 32 bytes, led.o(i.led_gpio_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            led_gpio_init (Thumb, 54 bytes, Stack size 32 bytes, led.o(i.led_gpio_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 232 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = led_gpio_init ⇒ xc_pwm_init ⇒ pwm_freq_to_period ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_pwm_start_all -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_pwm_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_pwm_dutycycle_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_pwm_start_all +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_pwm_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_pwm_dutycycle_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   board_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                main (Thumb, 72 bytes, Stack size 8 bytes, arch_main.o(i.main)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                main (Thumb, 72 bytes, Stack size 8 bytes, arch_main.o(i.main))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 544 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = main ⇒ bluetooth_init ⇒ flash_init ⇒ xc_unique_identification_read ⇒ xc_fmc_spi_flash_read ⇒ xc_fmc_spi_flash_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_wdt_reload -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_system_param_check -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_bor_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   timer0_2_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   rwip_schedule (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   TaskProcess -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   wdt_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   board_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   bluetooth_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_wdt_reload +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_system_param_check +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_bor_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   timer0_2_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rwip_schedule (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   TaskProcess +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   wdt_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   bluetooth_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __rt_entry_main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __rt_entry_main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    nvds_browse_tag (Thumb, 52 bytes, Stack size 40 bytes, nvds.o(i.nvds_browse_tag)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    nvds_browse_tag (Thumb, 52 bytes, Stack size 40 bytes, nvds.o(i.nvds_browse_tag))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = nvds_browse_tag ⇒ nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   nvds_walk_tag +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   nvds_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   nvds_del +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   nvds_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   nvds_del
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nvds_del (Thumb, 52 bytes, Stack size 24 bytes, nvds.o(i.nvds_del)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nvds_del (Thumb, 52 bytes, Stack size 24 bytes, nvds.o(i.nvds_del))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = nvds_del ⇒ nvds_browse_tag ⇒ nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   nvds_browse_tag +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   nvds_browse_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   gapc_bond_req_ind_handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   gapc_bond_ind_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   gapc_bond_req_ind_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   gapc_bond_ind_handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nvds_erase (Thumb, 76 bytes, Stack size 24 bytes, nvds.o(i.nvds_erase)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nvds_erase (Thumb, 76 bytes, Stack size 24 bytes, nvds.o(i.nvds_erase))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 160 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = nvds_erase ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rom_xc_fmc_spi_flash_erase_page (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   rom_xc_fmc_spi_flash_erase_page (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • nvds.o(i.nvds_init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              nvds_get (Thumb, 62 bytes, Stack size 40 bytes, nvds.o(i.nvds_get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              nvds_get (Thumb, 62 bytes, Stack size 40 bytes, nvds.o(i.nvds_get))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 112
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = nvds_get ⇒ nvds_browse_tag ⇒ nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   nvds_browse_tag +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_browse_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   gapc_encrypt_req_ind_handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   gapc_bond_req_ind_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gapc_encrypt_req_ind_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gapc_bond_req_ind_handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  nvds_init (Thumb, 48 bytes, Stack size 8 bytes, nvds.o(i.nvds_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  nvds_init (Thumb, 48 bytes, Stack size 8 bytes, nvds.o(i.nvds_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = nvds_init ⇒ nvds_is_magic_number_ok ⇒ memcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_is_magic_number_ok -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_init_memory -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   get_fota_env_addr +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   nvds_is_magic_number_ok +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   nvds_init_memory +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   get_fota_env_addr
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   bluetooth_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   bluetooth_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      nvds_init_memory (Thumb, 24 bytes, Stack size 8 bytes, nvds.o(i.nvds_init_memory)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      nvds_init_memory (Thumb, 24 bytes, Stack size 8 bytes, nvds.o(i.nvds_init_memory))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = nvds_init_memory
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   nvds_purge -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   nvds_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   nvds_purge +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   nvds_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nvds_is_magic_number_ok (Thumb, 36 bytes, Stack size 16 bytes, nvds.o(i.nvds_is_magic_number_ok)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nvds_is_magic_number_ok (Thumb, 36 bytes, Stack size 16 bytes, nvds.o(i.nvds_is_magic_number_ok))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = nvds_is_magic_number_ok ⇒ memcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   memcmp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   memcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   nvds_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   nvds_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nvds_purge (Thumb, 98 bytes, Stack size 40 bytes, nvds.o(i.nvds_purge)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nvds_purge (Thumb, 98 bytes, Stack size 40 bytes, nvds.o(i.nvds_purge))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = nvds_purge ⇒ nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   nvds_walk_tag -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   nvds_init_memory -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   nvds_walk_tag +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   nvds_init_memory +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   nvds_put +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_put
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nvds_put (Thumb, 202 bytes, Stack size 304 bytes, nvds.o(i.nvds_put)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nvds_put (Thumb, 202 bytes, Stack size 304 bytes, nvds.o(i.nvds_put))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 376
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = nvds_put ⇒ nvds_purge ⇒ nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_walk_tag -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_purge -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   memcmp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_walk_tag +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_purge +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   memcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gapc_bond_req_ind_handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gapc_bond_ind_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gapc_bond_req_ind_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gapc_bond_ind_handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    nvds_read (Thumb, 36 bytes, Stack size 8 bytes, nvds.o(i.nvds_read)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    nvds_read (Thumb, 36 bytes, Stack size 8 bytes, nvds.o(i.nvds_read))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = nvds_read
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   FMC_SPI_FlashRead (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   FMC_SPI_FlashRead (via Veneer)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • nvds.o(i.nvds_init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      nvds_space_init (Thumb, 70 bytes, Stack size 24 bytes, nvds.o(i.nvds_space_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      nvds_space_init (Thumb, 70 bytes, Stack size 24 bytes, nvds.o(i.nvds_space_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 160 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = nvds_space_init ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   flash_size_and_type_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   flash_size_and_type_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   flash_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   flash_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          nvds_walk_tag (Thumb, 52 bytes, Stack size 32 bytes, nvds.o(i.nvds_walk_tag)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          nvds_walk_tag (Thumb, 52 bytes, Stack size 32 bytes, nvds.o(i.nvds_walk_tag))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   nvds_purge -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   nvds_browse_tag -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   nvds_put +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   nvds_purge +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   nvds_browse_tag +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   nvds_put
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nvds_write (Thumb, 36 bytes, Stack size 8 bytes, nvds.o(i.nvds_write)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            nvds_write (Thumb, 36 bytes, Stack size 8 bytes, nvds.o(i.nvds_write))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = nvds_write
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   FMC_SPI_FlashWrite (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   FMC_SPI_FlashWrite (via Veneer)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • nvds.o(i.nvds_init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ota_slave_send_data (Thumb, 82 bytes, Stack size 40 bytes, ota_server.o(i.ota_slave_send_data)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ota_slave_send_data (Thumb, 82 bytes, Stack size 40 bytes, ota_server.o(i.ota_slave_send_data))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 176 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = ota_slave_send_data ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   get_app_env -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_ble_gatt_srv_notify -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __2printf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   ota_srv_get_hdl_from_att_idx +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   get_app_env +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_ble_gatt_srv_notify +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   ota_srv_get_hdl_from_att_idx
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fota_dev_ack_cmd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fota_dev_ack_cmd
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ota_srv_get_hdl_from_att_idx (Thumb, 10 bytes, Stack size 0 bytes, ota_server.o(i.ota_srv_get_hdl_from_att_idx)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   ota_slave_send_data +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ota_srv_get_hdl_from_att_idx (Thumb, 10 bytes, Stack size 0 bytes, ota_server.o(i.ota_srv_get_hdl_from_att_idx)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ota_slave_send_data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ota_write_flash (Thumb, 46 bytes, Stack size 16 bytes, ota_protocol.o(i.ota_write_flash)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ota_write_flash (Thumb, 46 bytes, Stack size 16 bytes, ota_protocol.o(i.ota_write_flash))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = ota_write_flash ⇒ ble_flash_later_write_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ble_flash_later_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ble_flash_later_write_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_ota_schedule +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_ota_schedule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        pwm3_toggle (Thumb, 42 bytes, Stack size 8 bytes, led.o(i.pwm3_toggle)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        pwm3_toggle (Thumb, 42 bytes, Stack size 8 bytes, led.o(i.pwm3_toggle))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 28
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = pwm3_toggle ⇒ xc_pwm_dutycycle_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_pwm_dutycycle_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_pwm_dutycycle_set

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   timer0_callback (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pwm_capture_ch0_callback (Thumb, 4 bytes, Stack size 0 bytes, xc_drv_pwm.o(i.pwm_capture_ch0_callback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   PWM_Handler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            pwm_capture_ch0_callback (Thumb, 4 bytes, Stack size 0 bytes, xc_drv_pwm.o(i.pwm_capture_ch0_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   PWM_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            pwm_capture_ch1_callback (Thumb, 4 bytes, Stack size 0 bytes, xc_drv_pwm.o(i.pwm_capture_ch1_callback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   PWM_Handler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pwm_capture_ch1_callback (Thumb, 4 bytes, Stack size 0 bytes, xc_drv_pwm.o(i.pwm_capture_ch1_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PWM_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pwm_capture_ch2_callback (Thumb, 4 bytes, Stack size 0 bytes, xc_drv_pwm.o(i.pwm_capture_ch2_callback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   PWM_Handler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pwm_capture_ch2_callback (Thumb, 4 bytes, Stack size 0 bytes, xc_drv_pwm.o(i.pwm_capture_ch2_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   PWM_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pwm_pin_set (Thumb, 192 bytes, Stack size 32 bytes, xc_drv_pwm.o(i.pwm_pin_set)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pwm_pin_set (Thumb, 192 bytes, Stack size 32 bytes, xc_drv_pwm.o(i.pwm_pin_set))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 52
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = pwm_pin_set ⇒ xc_gpio_init ⇒ xc_gpio_pull_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_pwm_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_pwm_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    read_user_data (Thumb, 104 bytes, Stack size 8 bytes, fmc_spi_1.o(i.read_user_data)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    read_user_data (Thumb, 104 bytes, Stack size 8 bytes, fmc_spi_1.o(i.read_user_data))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = read_user_data ⇒ get_checksum
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   get_checksum +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   get_checksum
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   fmc_spi_read +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   fmc_spi_read
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        reverse_verif_is_true (Thumb, 14 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(i.reverse_verif_is_true)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_unique_identification_read +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          reverse_verif_is_true (Thumb, 14 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(i.reverse_verif_is_true)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_unique_identification_read
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          rf433_gpio_init (Thumb, 30 bytes, Stack size 16 bytes, rf433.o(i.rf433_gpio_init)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 36
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = rf433_gpio_init ⇒ xc_gpio_init ⇒ xc_gpio_pull_config +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_decoder_get_frame (Thumb, 32 bytes, Stack size 8 bytes, rf433_decoder.o(i.rf433_decoder_get_frame)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = rf433_decoder_get_frame
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   scan_433
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              rf433_receive (Thumb, 242 bytes, Stack size 24 bytes, rf433.o(i.rf433_receive)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = rf433_receive +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                rf433_decoder_init (Thumb, 48 bytes, Stack size 8 bytes, rf433_decoder.o(i.rf433_decoder_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = rf433_decoder_init ⇒ rf433_decode_reset ⇒ rf433_update_range_by_t
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_read_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rf433_repair_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rf433_decode_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rf433_decoder_process (Thumb, 56 bytes, Stack size 16 bytes, rf433_decoder.o(i.rf433_decoder_process)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 296 + Unknown Stack Size +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = rf433_decoder_process ⇒ rf433_repair_input_pulse ⇒ rf433_process_clean_pulse ⇒ rf433_output_code ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rf433_repair_input_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • timeslice.o(.data) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rf433_decoder_sample (Thumb, 104 bytes, Stack size 20 bytes, rf433_decoder.o(i.rf433_decoder_sample)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 20
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = rf433_decoder_sample

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   timer2_callback (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rom_env_host_init (Thumb, 24 bytes, Stack size 8 bytes, arch_main.o(i.rom_env_host_init)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = rom_env_host_init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    rf433_gpio_init (Thumb, 30 bytes, Stack size 16 bytes, rf433.o(i.rf433_gpio_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 36
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = rf433_gpio_init ⇒ xc_gpio_init ⇒ xc_gpio_pull_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_memclr4 (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   board_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        scan_433 (Thumb, 400 bytes, Stack size 32 bytes, rf433.o(i.scan_433)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = scan_433 ⇒ _433_fun +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          rom_env_host_init (Thumb, 24 bytes, Stack size 8 bytes, arch_main.o(i.rom_env_host_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = rom_env_host_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _433_fun -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   flash_run -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memclr4 (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memclr (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memclr4 (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            scan_433 (Thumb, 416 bytes, Stack size 24 bytes, rf433.o(i.scan_433)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = scan_433 ⇒ _433_fun +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_decoder_get_frame +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _433_fun +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   flash_run +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memclr4 (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memclr (via Veneer)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • timeslice.o(.data)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            scan_uart (Thumb, 132 bytes, Stack size 16 bytes, uart_1.o(i.scan_uart)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            scan_uart (Thumb, 132 bytes, Stack size 16 bytes, uart_1.o(i.scan_uart))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = scan_uart ⇒ flash_run
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_gpio_toggle_pin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_gpio_read_pin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   flash_run +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_toggle_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_read_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   flash_run

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   ble_message_process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              set_TaskComps_timer (Thumb, 10 bytes, Stack size 0 bytes, timeslice.o(i.set_TaskComps_timer)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   flash_run +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                set_TaskComps_timer (Thumb, 10 bytes, Stack size 0 bytes, timeslice.o(i.set_TaskComps_timer)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   flash_run
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                set_single_addr_name (Thumb, 118 bytes, Stack size 272 bytes, arch_main.o(i.set_single_addr_name)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                set_single_addr_name (Thumb, 118 bytes, Stack size 272 bytes, arch_main.o(i.set_single_addr_name))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 600
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = set_single_addr_name ⇒ xc_fmc_spi_flash_write_page ⇒ xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_write_page (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_rdid (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_erase_page (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __ARM_common_switch8 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_write_page (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_rdid (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_erase_page (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __ARM_common_switch8 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memcpy

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • arch_main.o(i.rom_env_host_init)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  set_vector (Thumb, 46 bytes, Stack size 12 bytes, system_xinc.o(i.set_vector)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  set_vector (Thumb, 46 bytes, Stack size 12 bytes, system_xinc.o(i.set_vector))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 12
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = set_vector
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   SystemInit +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   SystemInit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    slave_send_data (Thumb, 82 bytes, Stack size 40 bytes, usr_server.o(i.slave_send_data)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    slave_send_data (Thumb, 82 bytes, Stack size 40 bytes, usr_server.o(i.slave_send_data))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 176 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = slave_send_data ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   get_app_env -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   srv_get_hdl_from_att_idx -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_ble_gatt_srv_notify -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   get_app_env +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   srv_get_hdl_from_att_idx +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_ble_gatt_srv_notify +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   custom_svc_cb_att_val_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   custom_svc_cb_att_val_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        srv_get_hdl_from_att_idx (Thumb, 10 bytes, Stack size 0 bytes, usr_server.o(i.srv_get_hdl_from_att_idx)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   slave_send_data +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          srv_get_hdl_from_att_idx (Thumb, 10 bytes, Stack size 0 bytes, usr_server.o(i.srv_get_hdl_from_att_idx)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   slave_send_data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          switch_init (Thumb, 102 bytes, Stack size 24 bytes, switch_s.o(i.switch_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          switch_init (Thumb, 102 bytes, Stack size 24 bytes, switch_s.o(i.switch_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 44
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = switch_init ⇒ xc_gpio_init ⇒ xc_gpio_pull_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_read_pin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_it_config -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_gpio_read_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_gpio_it_config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   board_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   board_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              systick_callback (Thumb, 2 bytes, Stack size 0 bytes, xc_drv_systick.o(i.systick_callback)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   SysTick_Handler +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                systick_callback (Thumb, 2 bytes, Stack size 0 bytes, xc_drv_systick.o(i.systick_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   SysTick_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                timer0_2_init (Thumb, 124 bytes, Stack size 24 bytes, timer.o(i.timer0_2_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                timer0_2_init (Thumb, 124 bytes, Stack size 24 bytes, timer.o(i.timer0_2_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = timer0_2_init ⇒ xc_timer_set_value ⇒ xc_timer_us_to_ticks ⇒ __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_timer_start -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_timer_set_value -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_timer_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_timer_start +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_timer_set_value +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_timer_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   main

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    timer3_callback (Thumb, 2 bytes, Stack size 0 bytes, xc_drv_timer.o(i.timer3_callback))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • xc_drv_timer.o(.data)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    trigger_check_process (Thumb, 610 bytes, Stack size 24 bytes, switch_s.o(i.trigger_check_process)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    trigger_check_process (Thumb, 610 bytes, Stack size 24 bytes, switch_s.o(i.trigger_check_process))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 32
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = trigger_check_process ⇒ flash_run
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_gpio_write_pin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_gpio_read_pin -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   flash_run +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_gpio_write_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_gpio_read_pin +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   flash_run

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • timeslice.o(.data)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      uart_user_handler (Thumb, 138 bytes, Stack size 24 bytes, xc_drv_uart.o(i.uart_user_handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      uart_user_handler (Thumb, 138 bytes, Stack size 24 bytes, xc_drv_uart.o(i.uart_user_handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 160 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = uart_user_handler ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART2_Handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART1_Handler -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   UART0_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART2_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART1_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   UART0_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          updateTimer (Thumb, 22 bytes, Stack size 0 bytes, timer.o(i.updateTimer)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          updateTimer (Thumb, 22 bytes, Stack size 0 bytes, timer.o(i.updateTimer))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   timer1_callback (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          wdt_init (Thumb, 26 bytes, Stack size 16 bytes, arch_main.o(i.wdt_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          wdt_init (Thumb, 26 bytes, Stack size 16 bytes, arch_main.o(i.wdt_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = wdt_init ⇒ xc_wdt_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_wdt_start -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_wdt_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_wdt_start +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_wdt_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              wright_user_data (Thumb, 108 bytes, Stack size 8 bytes, fmc_spi_1.o(i.wright_user_data)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              wright_user_data (Thumb, 108 bytes, Stack size 8 bytes, fmc_spi_1.o(i.wright_user_data))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = wright_user_data ⇒ get_checksum
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   get_checksum +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   get_checksum

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   app_op_flash_on
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_adc_data_average (Thumb, 120 bytes, Stack size 72 bytes, xc_drv_adc.o(i.xc_adc_data_average)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_adc_data_average (Thumb, 120 bytes, Stack size 72 bytes, xc_drv_adc.o(i.xc_adc_data_average))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xc_adc_data_average
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_uidivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_uidivmod (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   adc_intr_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   adc_intr_callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_ble_activity_delete (Thumb, 36 bytes, Stack size 8 bytes, xc_gap_api.o(i.xc_ble_activity_delete)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_ble_activity_delete (Thumb, 36 bytes, Stack size 8 bytes, xc_gap_api.o(i.xc_ble_activity_delete))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xc_ble_activity_delete
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ke_msg_send (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ke_msg_alloc (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ke_msg_send (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ke_msg_alloc (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   app_delete_advertising +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   app_delete_advertising
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_bor_init (Thumb, 40 bytes, Stack size 0 bytes, xc_drv_bor.o(i.xc_bor_init)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   main +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_bor_init (Thumb, 40 bytes, Stack size 0 bytes, xc_drv_bor.o(i.xc_bor_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_clock_bbpll_common_cfg (Thumb, 50 bytes, Stack size 0 bytes, xc_drv_clock.o(i.xc_clock_bbpll_common_cfg)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_hfclk_set +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_clock_bbpll_common_cfg (Thumb, 50 bytes, Stack size 0 bytes, xc_drv_clock.o(i.xc_clock_bbpll_common_cfg)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_hfclk_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_clock_bbpll_freq_cfg (Thumb, 224 bytes, Stack size 32 bytes, xc_drv_clock.o(i.xc_clock_bbpll_freq_cfg)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_clock_bbpll_freq_cfg (Thumb, 224 bytes, Stack size 32 bytes, xc_drv_clock.o(i.xc_clock_bbpll_freq_cfg))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 40
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xc_clock_bbpll_freq_cfg ⇒ delay_us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   delay_us -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __ARM_common_switch8 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   delay_us +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __ARM_common_switch8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_hfclk_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_hfclk_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_clock_hfclk_in_get (Thumb, 6 bytes, Stack size 0 bytes, xc_drv_clock.o(i.xc_clock_hfclk_in_get)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   pwm_freq_to_period -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_pwr_vol_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_uart_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   clock_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_rc32k_soft_calib_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_timer_us_to_ticks +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  xc_clock_hfclk_in_get (Thumb, 6 bytes, Stack size 0 bytes, xc_drv_clock.o(i.xc_clock_hfclk_in_get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   pwm_freq_to_period +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_pwr_vol_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_uart_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   clock_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_rc32k_soft_calib_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_timer_us_to_ticks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  xc_clock_hfclk_set (Thumb, 192 bytes, Stack size 32 bytes, xc_drv_clock.o(i.xc_clock_hfclk_set)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  xc_clock_hfclk_set (Thumb, 192 bytes, Stack size 32 bytes, xc_drv_clock.o(i.xc_clock_hfclk_set))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 88
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = xc_clock_hfclk_set ⇒ xc_hfclk_set ⇒ xc_clock_bbpll_freq_cfg ⇒ delay_us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_hfclk_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_uidivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_hfclk_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_uidivmod (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_clock_init_cfg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_clock_init_cfg
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_clock_init_cfg (Thumb, 22 bytes, Stack size 8 bytes, xc_drv_clock.o(i.xc_clock_init_cfg)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_clock_init_cfg (Thumb, 22 bytes, Stack size 8 bytes, xc_drv_clock.o(i.xc_clock_init_cfg))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 96
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = xc_clock_init_cfg ⇒ xc_clock_hfclk_set ⇒ xc_hfclk_set ⇒ xc_clock_bbpll_freq_cfg ⇒ delay_us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_clock_lfclk_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_clock_hfclk_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_clock_lfclk_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_clock_hfclk_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   clock_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   clock_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_clock_lfclk_in_get (Thumb, 6 bytes, Stack size 0 bytes, xc_drv_clock.o(i.xc_clock_lfclk_in_get)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   pwm_freq_to_period +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_clock_lfclk_in_get (Thumb, 6 bytes, Stack size 0 bytes, xc_drv_clock.o(i.xc_clock_lfclk_in_get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   pwm_freq_to_period
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_clock_lfclk_set (Thumb, 96 bytes, Stack size 16 bytes, xc_drv_clock.o(i.xc_clock_lfclk_set)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_clock_lfclk_set (Thumb, 96 bytes, Stack size 16 bytes, xc_drv_clock.o(i.xc_clock_lfclk_set))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 36
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xc_clock_lfclk_set ⇒ xc_gpio_init ⇒ xc_gpio_pull_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_clock_init_cfg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_clock_init_cfg
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_fota_dev_ack_cmd (Thumb, 36 bytes, Stack size 16 bytes, ota_protocol.o(i.xc_fota_dev_ack_cmd)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_fota_dev_ack_cmd (Thumb, 36 bytes, Stack size 16 bytes, ota_protocol.o(i.xc_fota_dev_ack_cmd))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 192 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xc_fota_dev_ack_cmd ⇒ ota_slave_send_data ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   ota_slave_send_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   ota_slave_send_data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_ota_schedule +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_ota_schedule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_gpio_direction_config (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_gpio.o(i.xc_gpio_direction_config)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_gpio_init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_gpio_direction_config (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_gpio.o(i.xc_gpio_direction_config)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_gpio_fun_sel (Thumb, 36 bytes, Stack size 8 bytes, xc_drv_gpio.o(i.xc_gpio_fun_sel)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_gpio_fun_sel (Thumb, 36 bytes, Stack size 8 bytes, xc_drv_gpio.o(i.xc_gpio_fun_sel))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = xc_gpio_fun_sel
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_gpio_init (Thumb, 46 bytes, Stack size 8 bytes, xc_drv_gpio.o(i.xc_gpio_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_gpio_init (Thumb, 46 bytes, Stack size 8 bytes, xc_drv_gpio.o(i.xc_gpio_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 20
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xc_gpio_init ⇒ xc_gpio_pull_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_pull_config -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_mux_ctl -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_it_config -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_fun_sel -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_gpio_direction_config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_pull_config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_mux_ctl +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_it_config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_fun_sel +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_gpio_direction_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_clock_lfclk_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   switch_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   rf433_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   chx_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_key_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_uart_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   pwm_pin_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_lfclk_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   switch_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   chx_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_key_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_uart_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   pwm_pin_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_gpio_it_config (Thumb, 46 bytes, Stack size 12 bytes, xc_drv_gpio.o(i.xc_gpio_it_config)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_gpio_it_config (Thumb, 46 bytes, Stack size 12 bytes, xc_drv_gpio.o(i.xc_gpio_it_config))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 12
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xc_gpio_it_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   switch_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   switch_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xc_gpio_mux_ctl (Thumb, 70 bytes, Stack size 8 bytes, xc_drv_gpio.o(i.xc_gpio_mux_ctl)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xc_gpio_mux_ctl (Thumb, 70 bytes, Stack size 8 bytes, xc_drv_gpio.o(i.xc_gpio_mux_ctl))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = xc_gpio_mux_ctl
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_gpio_pull_config (Thumb, 228 bytes, Stack size 12 bytes, xc_drv_gpio.o(i.xc_gpio_pull_config)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_gpio_pull_config (Thumb, 228 bytes, Stack size 12 bytes, xc_drv_gpio.o(i.xc_gpio_pull_config))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 12
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xc_gpio_pull_config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  xc_gpio_read_pin (Thumb, 30 bytes, Stack size 0 bytes, xc_drv_gpio.o(i.xc_gpio_read_pin)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   switch_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   gpio_key_check -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _433_fun -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   scan_uart -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   trigger_check_process -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   rf433_receive +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_gpio_read_pin (Thumb, 30 bytes, Stack size 0 bytes, xc_drv_gpio.o(i.xc_gpio_read_pin)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   switch_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gpio_key_check +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _433_fun +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   scan_uart +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   trigger_check_process +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   timer2_callback (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_gpio_toggle_pin (Thumb, 36 bytes, Stack size 0 bytes, xc_drv_gpio.o(i.xc_gpio_toggle_pin)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _433_fun -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   scan_uart +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_gpio_toggle_pin (Thumb, 36 bytes, Stack size 0 bytes, xc_drv_gpio.o(i.xc_gpio_toggle_pin)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _433_fun +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   scan_uart
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_gpio_write_pin (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_gpio.o(i.xc_gpio_write_pin)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   chx_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _433_fun -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   trigger_check_process +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_gpio_write_pin (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_gpio.o(i.xc_gpio_write_pin)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   chx_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _433_fun +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   trigger_check_process
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_hfclk_set (Thumb, 58 bytes, Stack size 16 bytes, xc_drv_clock.o(i.xc_hfclk_set)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_hfclk_set (Thumb, 58 bytes, Stack size 16 bytes, xc_drv_clock.o(i.xc_hfclk_set))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xc_hfclk_set ⇒ xc_clock_bbpll_freq_cfg ⇒ delay_us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_pwr_vol_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   delay_us -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_clock_bbpll_freq_cfg -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_clock_bbpll_common_cfg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_pwr_vol_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   delay_us +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_clock_bbpll_freq_cfg +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_clock_bbpll_common_cfg
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_clock_hfclk_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_hfclk_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_ota_schedule (Thumb, 68 bytes, Stack size 8 bytes, ota_protocol.o(i.xc_ota_schedule)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_ota_schedule (Thumb, 68 bytes, Stack size 8 bytes, ota_protocol.o(i.xc_ota_schedule))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 360 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xc_ota_schedule ⇒ ble_flash_handle ⇒ xc_fmc_spi_flash_write_page ⇒ xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __2printf -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fota_dev_ack_cmd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   ota_write_flash -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   ble_flash_handle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fota_dev_ack_cmd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   ota_write_flash +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   ble_flash_handle

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • timeslice.o(.data)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xc_pwm_dutycycle_set (Thumb, 104 bytes, Stack size 20 bytes, xc_drv_pwm.o(i.xc_pwm_dutycycle_set)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xc_pwm_dutycycle_set (Thumb, 104 bytes, Stack size 20 bytes, xc_drv_pwm.o(i.xc_pwm_dutycycle_set))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 20
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = xc_pwm_dutycycle_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   led_gpio_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_pwm_init -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   pwm3_toggle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   led_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_pwm_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   pwm3_toggle
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   timer0_callback (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_pwm_init (Thumb, 208 bytes, Stack size 32 bytes, xc_drv_pwm.o(i.xc_pwm_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_pwm_init (Thumb, 208 bytes, Stack size 32 bytes, xc_drv_pwm.o(i.xc_pwm_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 200 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xc_pwm_init ⇒ pwm_freq_to_period ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   pwm_freq_to_period -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_pwm_dutycycle_set -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   pwm_pin_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   pwm_freq_to_period +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_pwm_dutycycle_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   pwm_pin_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   led_gpio_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   led_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_pwm_start_all (Thumb, 20 bytes, Stack size 0 bytes, xc_drv_pwm.o(i.xc_pwm_start_all)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   led_gpio_init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_pwm_start_all (Thumb, 20 bytes, Stack size 0 bytes, xc_drv_pwm.o(i.xc_pwm_start_all)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   led_gpio_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_pwr_vol_set (Thumb, 70 bytes, Stack size 8 bytes, xc_drv_pwr.o(i.xc_pwr_vol_set)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_pwr_vol_set (Thumb, 70 bytes, Stack size 8 bytes, xc_drv_pwr.o(i.xc_pwr_vol_set))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = xc_pwr_vol_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_clock_hfclk_in_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_clock_hfclk_in_get
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_hfclk_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_hfclk_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_rc32k_soft_calib_set (Thumb, 204 bytes, Stack size 24 bytes, xc_drv_calib.o(i.xc_rc32k_soft_calib_set)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_rc32k_soft_calib_set (Thumb, 204 bytes, Stack size 24 bytes, xc_drv_calib.o(i.xc_rc32k_soft_calib_set))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 44
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = xc_rc32k_soft_calib_set ⇒ __aeabi_fdiv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_clock_hfclk_in_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_fmul -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_ui2f -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_f2uiz -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_fdiv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_hfclk_in_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_fmul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_ui2f +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_f2uiz +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_fdiv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   RTC_Handler (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   RTC_Handler (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xc_system_param_check (Thumb, 230 bytes, Stack size 24 bytes, xc_drv_clock.o(i.xc_system_param_check)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xc_system_param_check (Thumb, 230 bytes, Stack size 24 bytes, xc_drv_clock.o(i.xc_system_param_check))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 160 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = xc_system_param_check ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  xc_systick_unit_get (Thumb, 6 bytes, Stack size 0 bytes, xc_drv_clock.o(i.xc_systick_unit_get)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   delay_us +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_systick_unit_get (Thumb, 6 bytes, Stack size 0 bytes, xc_drv_clock.o(i.xc_systick_unit_get)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   delay_us
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_timer_init (Thumb, 274 bytes, Stack size 20 bytes, xc_drv_timer.o(i.xc_timer_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_timer_init (Thumb, 274 bytes, Stack size 20 bytes, xc_drv_timer.o(i.xc_timer_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 20
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xc_timer_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   timer0_2_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   timer0_2_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_timer_set_value (Thumb, 32 bytes, Stack size 16 bytes, xc_drv_timer.o(i.xc_timer_set_value)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_timer_set_value (Thumb, 32 bytes, Stack size 16 bytes, xc_drv_timer.o(i.xc_timer_set_value))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 72
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = xc_timer_set_value ⇒ xc_timer_us_to_ticks ⇒ __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_timer_us_to_ticks +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_timer_us_to_ticks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   timer0_2_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   timer0_2_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_timer_start (Thumb, 48 bytes, Stack size 16 bytes, xc_drv_timer.o(i.xc_timer_start)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_timer_start (Thumb, 48 bytes, Stack size 16 bytes, xc_drv_timer.o(i.xc_timer_start))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = xc_timer_start
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   timer0_2_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   timer0_2_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_uart_init (Thumb, 476 bytes, Stack size 24 bytes, xc_drv_uart.o(i.xc_uart_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_uart_init (Thumb, 476 bytes, Stack size 24 bytes, xc_drv_uart.o(i.xc_uart_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xc_uart_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_hfclk_in_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_uidivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_clock_hfclk_in_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_uidivmod (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   app_uart_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   app_uart_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_unique_identification_read (Thumb, 228 bytes, Stack size 64 bytes, xc_drv_fmc_spi.o(i.xc_unique_identification_read)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_unique_identification_read (Thumb, 228 bytes, Stack size 64 bytes, xc_drv_fmc_spi.o(i.xc_unique_identification_read))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 456
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xc_unique_identification_read ⇒ xc_fmc_spi_flash_read ⇒ xc_fmc_spi_flash_read_page ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_read (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_otp_read_page (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   reverse_verif_is_true -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   extract32_16 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_init_oprt (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_wake_up (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   flash_size_and_type_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_read (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_otp_read_page (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   reverse_verif_is_true +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   extract32_16 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_init_oprt (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_wake_up (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   flash_size_and_type_get
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   flash_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   flash_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_wdt_init (Thumb, 94 bytes, Stack size 8 bytes, xc_drv_wdt.o(i.xc_wdt_init)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_wdt_init (Thumb, 94 bytes, Stack size 8 bytes, xc_drv_wdt.o(i.xc_wdt_init))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = xc_wdt_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   wdt_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   wdt_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_wdt_refresh (Thumb, 56 bytes, Stack size 8 bytes, xc_drv_wdt.o(i.xc_wdt_refresh)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_wdt_refresh (Thumb, 56 bytes, Stack size 8 bytes, xc_drv_wdt.o(i.xc_wdt_refresh))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = xc_wdt_refresh
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   WDT_Handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   WDT_Handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_wdt_reload (Thumb, 60 bytes, Stack size 8 bytes, xc_drv_wdt.o(i.xc_wdt_reload)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_wdt_reload (Thumb, 60 bytes, Stack size 8 bytes, xc_drv_wdt.o(i.xc_wdt_reload))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xc_wdt_reload
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   main +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_wdt_start (Thumb, 44 bytes, Stack size 0 bytes, xc_drv_wdt.o(i.xc_wdt_start)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   wdt_init +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_wdt_start (Thumb, 44 bytes, Stack size 0 bytes, xc_drv_wdt.o(i.xc_wdt_start)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   wdt_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _get_lc_numeric (Thumb, 44 bytes, Stack size 8 bytes, lc_numeric_c.o(locale$$code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _get_lc_numeric (Thumb, 44 bytes, Stack size 8 bytes, lc_numeric_c.o(locale$$code))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = _get_lc_numeric ⇒ strcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   strcmp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   strcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __rt_lib_init_lc_numeric_2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __rt_lib_init_lc_numeric_2
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _get_lc_ctype (Thumb, 44 bytes, Stack size 8 bytes, lc_ctype_c.o(locale$$code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _get_lc_ctype (Thumb, 44 bytes, Stack size 8 bytes, lc_ctype_c.o(locale$$code))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = _get_lc_ctype ⇒ strcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   strcmp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   strcmp
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __rt_lib_init_lc_ctype_2 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __rt_lib_init_lc_ctype_2

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • rt_ctype_table.o(.text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __aeabi_fmul (Thumb, 0 bytes, Stack size 16 bytes, fmul.o(x$fpl$fmul)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    __aeabi_fmul (Thumb, 0 bytes, Stack size 16 bytes, fmul.o(x$fpl$fmul))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = __aeabi_fmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_rc32k_soft_calib_set +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_rc32k_soft_calib_set
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _fmul (Thumb, 172 bytes, Stack size 16 bytes, fmul.o(x$fpl$fmul), UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _fmul (Thumb, 172 bytes, Stack size 16 bytes, fmul.o(x$fpl$fmul), UNUSED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _printf_fp_dec (Thumb, 16 bytes, Stack size 8 bytes, printf1.o(x$fpl$printf1)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _printf_fp_dec (Thumb, 16 bytes, Stack size 8 bytes, printf1.o(x$fpl$printf1))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = _printf_fp_dec
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_g -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_e -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _printf_f +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_g +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_e +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_f
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _printf_fp_hex (Thumb, 16 bytes, Stack size 8 bytes, printf2.o(x$fpl$printf2)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _printf_fp_hex (Thumb, 16 bytes, Stack size 8 bytes, printf2.o(x$fpl$printf2))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = _printf_fp_hex
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   _printf_a +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_a

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Local Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          WDT_ResetInit (Thumb, 66 bytes, Stack size 0 bytes, system_xinc.o(i.WDT_ResetInit)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   SystemInit +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            WDT_ResetInit (Thumb, 66 bytes, Stack size 0 bytes, system_xinc.o(i.WDT_ResetInit)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   SystemInit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            app_msg_handler (Thumb, 102 bytes, Stack size 32 bytes, app_task.o(i.app_msg_handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            app_msg_handler (Thumb, 102 bytes, Stack size 32 bytes, app_task.o(i.app_msg_handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 272 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = app_msg_handler ⇒ gapm_callback ⇒ gapm_cmp_evt ⇒ custom_svc_add ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   gapm_callback -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   gapc_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   gapm_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   gapc_callback

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • app_task.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              gapc_callback (Thumb, 358 bytes, Stack size 72 bytes, app_task.o(i.gapc_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              gapc_callback (Thumb, 358 bytes, Stack size 72 bytes, app_task.o(i.gapc_callback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 208 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = gapc_callback ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_ble_set_dev_info_cfm -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_ble_param_update_cfm -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_ble_gatt_cli_mtu_exch -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_ble_conn_cfm -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   app_start_advertising -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   gapc_get_device_info_req_ind -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_memclr4 (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_ble_set_dev_info_cfm +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_ble_param_update_cfm +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_ble_gatt_cli_mtu_exch +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_ble_conn_cfm +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   app_start_advertising +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   gapc_get_device_info_req_ind +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memclr4 (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   app_msg_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   app_msg_handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gapc_get_device_info_req_ind (Thumb, 132 bytes, Stack size 24 bytes, app_task.o(i.gapc_get_device_info_req_ind)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gapc_get_device_info_req_ind (Thumb, 132 bytes, Stack size 24 bytes, app_task.o(i.gapc_get_device_info_req_ind))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = gapc_get_device_info_req_ind ⇒ app_get_dev_name ⇒ __aeabi_memcpy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_ble_get_dev_info_cfm -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   app_get_dev_name -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   ke_msg_alloc (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_ble_get_dev_info_cfm +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   app_get_dev_name +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ke_msg_alloc (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   gapc_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   gapc_callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gapm_callback (Thumb, 164 bytes, Stack size 16 bytes, app_task.o(i.gapm_callback)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      gapm_callback (Thumb, 164 bytes, Stack size 16 bytes, app_task.o(i.gapm_callback))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 240 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = gapm_callback ⇒ gapm_cmp_evt ⇒ custom_svc_add ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ke_state_get (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   app_set_adv_data -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   gapm_cmp_evt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_memcpy -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   ke_state_get (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   app_set_adv_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   gapm_cmp_evt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   app_msg_handler +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_msg_handler
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          gapm_cmp_evt (Thumb, 98 bytes, Stack size 56 bytes, app_task.o(i.gapm_cmp_evt)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          gapm_cmp_evt (Thumb, 98 bytes, Stack size 56 bytes, app_task.o(i.gapm_cmp_evt))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 224 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = gapm_cmp_evt ⇒ custom_svc_add ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_ble_set_dev_config -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   custom_svc_add -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_start_advertising -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_delete_advertising -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_create_advertising -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_memcpy4 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_ble_set_dev_config +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   custom_svc_add +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_start_advertising +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_delete_advertising +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_create_advertising +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_memcpy4 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   gapm_callback +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   gapm_callback
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              app_sec_msg_dflt_handler (Thumb, 4 bytes, Stack size 0 bytes, app_sec.o(i.app_sec_msg_dflt_handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              app_sec_msg_dflt_handler (Thumb, 4 bytes, Stack size 0 bytes, app_sec.o(i.app_sec_msg_dflt_handler))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • app_sec.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              gapc_bond_ind_handler (Thumb, 262 bytes, Stack size 16 bytes, app_sec.o(i.gapc_bond_ind_handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              gapc_bond_ind_handler (Thumb, 262 bytes, Stack size 16 bytes, app_sec.o(i.gapc_bond_ind_handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 392 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = gapc_bond_ind_handler ⇒ nvds_put ⇒ nvds_purge ⇒ nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   get_app_env -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   nvds_put -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   nvds_del -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   gapc_get_bdaddr -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __ARM_common_switch8 -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   get_app_env +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_put +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_del +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   gapc_get_bdaddr +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __ARM_common_switch8 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • app_sec.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                gapc_bond_req_ind_handler (Thumb, 338 bytes, Stack size 24 bytes, app_sec.o(i.gapc_bond_req_ind_handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                gapc_bond_req_ind_handler (Thumb, 338 bytes, Stack size 24 bytes, app_sec.o(i.gapc_bond_req_ind_handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 400 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = gapc_bond_req_ind_handler ⇒ nvds_put ⇒ nvds_purge ⇒ nvds_walk_tag
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   ke_msg_send (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   ke_msg_alloc (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_put -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   nvds_del -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   co_rand_word -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_uidivmod (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memclr (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_memcpy -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   ke_msg_send (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   ke_msg_alloc (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_put +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   nvds_del +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   co_rand_word +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_uidivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memclr (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • app_sec.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gapc_encrypt_ind_handler (Thumb, 22 bytes, Stack size 8 bytes, app_sec.o(i.gapc_encrypt_ind_handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  gapc_encrypt_ind_handler (Thumb, 22 bytes, Stack size 8 bytes, app_sec.o(i.gapc_encrypt_ind_handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 144 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = gapc_encrypt_ind_handler ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • app_sec.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    gapc_encrypt_req_ind_handler (Thumb, 204 bytes, Stack size 56 bytes, app_sec.o(i.gapc_encrypt_req_ind_handler)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    gapc_encrypt_req_ind_handler (Thumb, 204 bytes, Stack size 56 bytes, app_sec.o(i.gapc_encrypt_req_ind_handler))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 192 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = gapc_encrypt_req_ind_handler ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ke_msg_send (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   ke_msg_alloc (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   nvds_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __aeabi_memcpy -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   memcmp -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ke_msg_send (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   ke_msg_alloc (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   nvds_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __aeabi_memcpy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   memcmp +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   __2printf

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Address Reference Count : 1]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • app_sec.o(.constdata)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ram_memcpy_bytes (Thumb, 62 bytes, Stack size 8 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ram_memcpy_bytes (Thumb, 62 bytes, Stack size 8 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Call Chain = ram_memcpy_bytes
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_read -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_otp_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_write_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_ruid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_rdid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_read +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_otp_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_ruid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_rdid
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_fmc_spi_write_nbyte (Thumb, 142 bytes, Stack size 20 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_fmc_spi_write_nbyte (Thumb, 142 bytes, Stack size 20 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Max Depth = 20
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Call Chain = xc_fmc_spi_write_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_otp_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_write_enable -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_wait_busy -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_write_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_wake_up -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_ruid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_rdid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_erase_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_otp_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_write_enable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_wait_busy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_wake_up +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_ruid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_rdid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_erase_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_fmc_spi_read_nbyte (Thumb, 120 bytes, Stack size 24 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_fmc_spi_read_nbyte (Thumb, 120 bytes, Stack size 24 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_otp_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_wait_busy -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_ruid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_rdid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_flash_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_otp_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_flash_wait_busy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_flash_ruid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_flash_rdid
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_fmc_spi_flash_wait_busy (Thumb, 62 bytes, Stack size 24 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            xc_fmc_spi_flash_wait_busy (Thumb, 62 bytes, Stack size 24 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 48
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = xc_fmc_spi_flash_wait_busy ⇒ xc_fmc_spi_read_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_disable -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_enable -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_status_wait_idle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_read_nbyte -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_fmc_spi_write_nbyte +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_disable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_enable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_status_wait_idle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_read_nbyte +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_write_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_flash_write_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_flash_ruid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_flash_rdid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_fmc_spi_flash_erase_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_ruid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_rdid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_flash_erase_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_fmc_spi_flash_write_enable (Thumb, 42 bytes, Stack size 8 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                xc_fmc_spi_flash_write_enable (Thumb, 42 bytes, Stack size 8 bytes, xc_drv_fmc_spi.o(ram_code))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 28
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = xc_fmc_spi_flash_write_enable ⇒ xc_fmc_spi_write_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_disable -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_enable -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_status_wait_idle -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_fmc_spi_write_nbyte +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_disable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_enable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_status_wait_idle +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_write_nbyte
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_write_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_fmc_spi_flash_erase_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_erase_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    xc_fmc_status_wait_idle (Thumb, 10 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(ram_code)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_otp_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_write_enable -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_wait_busy -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_init_oprt -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_write_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_wake_up -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_ruid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_rdid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   xc_fmc_spi_flash_erase_page +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_fmc_status_wait_idle (Thumb, 10 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_otp_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_write_enable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_wait_busy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_init_oprt +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_wake_up +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_ruid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_rdid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_erase_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      xc_fmc_spi_enable (Thumb, 28 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(ram_code)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_otp_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_write_enable -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_wait_busy -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_write_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_wake_up -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_ruid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_rdid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   xc_fmc_spi_flash_erase_page +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_fmc_spi_enable (Thumb, 28 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_otp_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_write_enable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_wait_busy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_wake_up +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_ruid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_rdid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_erase_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        xc_fmc_spi_disable (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(ram_code)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_otp_read_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_write_enable -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_wait_busy -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_write_page -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_wake_up -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_ruid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_rdid -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   xc_fmc_spi_flash_erase_page +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          xc_fmc_spi_disable (Thumb, 24 bytes, Stack size 0 bytes, xc_drv_fmc_spi.o(ram_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_otp_read_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_write_enable +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_wait_busy +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_write_page +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_wake_up +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_ruid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_rdid +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_fmc_spi_flash_erase_page
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pwm_freq_to_period (Thumb, 148 bytes, Stack size 32 bytes, xc_drv_pwm.o(i.pwm_freq_to_period)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pwm_freq_to_period (Thumb, 148 bytes, Stack size 32 bytes, xc_drv_pwm.o(i.pwm_freq_to_period))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Max Depth = 168 + Unknown Stack Size
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Call Chain = pwm_freq_to_period ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_clock_lfclk_in_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   xc_clock_hfclk_in_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __aeabi_uidivmod (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_lfclk_in_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_clock_hfclk_in_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_uidivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __2printf
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   xc_pwm_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_pwm_init
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xc_timer_us_to_ticks (Thumb, 230 bytes, Stack size 24 bytes, xc_drv_timer.o(i.xc_timer_us_to_ticks)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              xc_timer_us_to_ticks (Thumb, 230 bytes, Stack size 24 bytes, xc_drv_timer.o(i.xc_timer_us_to_ticks))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Max Depth = 56
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Call Chain = xc_timer_us_to_ticks ⇒ __aeabi_uldivmod
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   xc_clock_hfclk_in_get -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_uldivmod -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   __aeabi_lmul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_clock_hfclk_in_get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_uldivmod +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __aeabi_lmul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   xc_timer_set_value +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   xc_timer_set_value
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  get_checksum (Thumb, 28 bytes, Stack size 8 bytes, fmc_spi_1.o(i.get_checksum)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  get_checksum (Thumb, 28 bytes, Stack size 8 bytes, fmc_spi_1.o(i.get_checksum))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Call Chain = get_checksum
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   wright_user_data -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   read_user_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   wright_user_data +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   read_user_data
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    app_key_click_detection (Thumb, 100 bytes, Stack size 24 bytes, key.o(i.app_key_click_detection)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    app_key_click_detection (Thumb, 100 bytes, Stack size 24 bytes, key.o(i.app_key_click_detection))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 24
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = app_key_click_detection
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   key_click_state_reset -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   get_click_event +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   key_click_state_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   get_click_event
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   app_new_key_detection (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   app_new_key_detection (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        get_click_event (Thumb, 46 bytes, Stack size 0 bytes, key.o(i.get_click_event)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   app_key_click_detection -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   app_key_scan +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          get_click_event (Thumb, 46 bytes, Stack size 0 bytes, key.o(i.get_click_event)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_key_click_detection +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_key_scan
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          key_click_state_reset (Thumb, 14 bytes, Stack size 0 bytes, key.o(i.key_click_state_reset)) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_new_key_detection (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_key_hold_detection (via Veneer) -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_key_click_detection -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   app_key_scan +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            key_click_state_reset (Thumb, 14 bytes, Stack size 0 bytes, key.o(i.key_click_state_reset)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_key_hold_detection (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_key_click_detection +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_key_scan +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   app_new_key_detection (via Veneer)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _fp_digits (Thumb, 412 bytes, Stack size 96 bytes, _printf_fp_dec.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_abs_diff_u16 (Thumb, 14 bytes, Stack size 0 bytes, rf433_decoder.o(i.rf433_abs_diff_u16)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_decode_reset (Thumb, 32 bytes, Stack size 8 bytes, rf433_decoder.o(i.rf433_decode_reset)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 16
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = rf433_decode_reset ⇒ rf433_update_range_by_t +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_update_range_by_t +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_decoder_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_repair_input_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_is_long (Thumb, 22 bytes, Stack size 0 bytes, rf433_decoder.o(i.rf433_is_long)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_is_short (Thumb, 22 bytes, Stack size 0 bytes, rf433_decoder.o(i.rf433_is_short)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_limit_t (Thumb, 16 bytes, Stack size 0 bytes, rf433_decoder.o(i.rf433_limit_t)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_update_range_by_t +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_output_code (Thumb, 84 bytes, Stack size 24 bytes, rf433_decoder.o(i.rf433_output_code)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 160 + Unknown Stack Size +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = rf433_output_code ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_process_clean_pulse (Thumb, 538 bytes, Stack size 48 bytes, rf433_decoder.o(i.rf433_process_clean_pulse)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 208 + Unknown Stack Size +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = rf433_process_clean_pulse ⇒ rf433_output_code ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __aeabi_uidivmod (via Veneer) +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   __2printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_update_range_by_t +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_repair_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_output_code +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_limit_t +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_is_short +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_is_long +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_decode_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_abs_diff_u16 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_repair_input_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_repair_input_pulse (Thumb, 188 bytes, Stack size 72 bytes, rf433_decoder.o(i.rf433_repair_input_pulse)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 280 + Unknown Stack Size +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = rf433_repair_input_pulse ⇒ rf433_process_clean_pulse ⇒ rf433_output_code ⇒ __2printf ⇒ _printf_char_file ⇒ _printf_char_common ⇒ __printf +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_repair_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_decode_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_decoder_process +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_repair_reset (Thumb, 20 bytes, Stack size 0 bytes, rf433_decoder.o(i.rf433_repair_reset)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_decoder_init +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_repair_input_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            rf433_update_range_by_t (Thumb, 104 bytes, Stack size 8 bytes, rf433_decoder.o(i.rf433_update_range_by_t)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 8
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = rf433_update_range_by_t +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_limit_t +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_process_clean_pulse +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   rf433_decode_reset +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            + +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _fp_digits (Thumb, 412 bytes, Stack size 96 bytes, _printf_fp_dec.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Max Depth = 272
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Call Chain = _fp_digits ⇒ _btod_etento ⇒ _btod_emul ⇒ btod_internal_mul ⇒ __ARM_common_ll_muluu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_ediv -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_emul -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_d2e -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _btod_etento -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _ll_udiv10 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _ll_udiv10 +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_ediv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_emul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_d2e +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _btod_etento
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_fp_dec_real +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   _printf_fp_dec_real
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _printf_input_char (Thumb, 10 bytes, Stack size 0 bytes, _printf_char_common.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                _printf_input_char (Thumb, 10 bytes, Stack size 0 bytes, _printf_char_common.o(.text))
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Address Reference Count : 1]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • _printf_char_common.o(.text)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                btod_internal_mul (Thumb, 492 bytes, Stack size 56 bytes, btod.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                btod_internal_mul (Thumb, 492 bytes, Stack size 56 bytes, btod.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Max Depth = 80
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Call Chain = btod_internal_mul ⇒ __ARM_common_ll_muluu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • >>   __ARM_common_ll_muluu +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Calls]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   __ARM_common_ll_muluu
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _btod_emuld -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • >>   _btod_emul +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _btod_emuld +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _btod_emul
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    btod_internal_div (Thumb, 520 bytes, Stack size 64 bytes, btod.o(.text)) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    btod_internal_div (Thumb, 520 bytes, Stack size 64 bytes, btod.o(.text))

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Stack]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Max Depth = 64
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Call Chain = btod_internal_div
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _btod_edivd -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • >>   _btod_ediv +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _btod_edivd +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   _btod_ediv

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Undefined Global Symbols

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      _call_atexit_fns (ARM, 0 bytes, Stack size 0 bytes, UNDEFINED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • >>   exit +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _call_atexit_fns (ARM, 0 bytes, Stack size 0 bytes, UNDEFINED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • >>   exit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _handle_redirection (ARM, 0 bytes, Stack size 0 bytes, UNDEFINED, UNUSED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        _handle_redirection (ARM, 0 bytes, Stack size 0 bytes, UNDEFINED, UNUSED)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          _printf_mbtowc (ARM, 0 bytes, Stack size 0 bytes, UNDEFINED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • >>   _printf_cs_common +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _printf_mbtowc (ARM, 0 bytes, Stack size 0 bytes, UNDEFINED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_cs_common
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            _printf_wc (ARM, 0 bytes, Stack size 0 bytes, UNDEFINED) -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • >>   _printf_lcs_common +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              _printf_wc (ARM, 0 bytes, Stack size 0 bytes, UNDEFINED) +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [Called By]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • >>   _printf_lcs_common

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.lnp b/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.lnp index aab0fdf..3f5e710 100644 --- a/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.lnp +++ b/project/example/ble/ble_peripheral/mdk/Objects/Xinc_ble_sdk.lnp @@ -47,6 +47,7 @@ ".\objects\ota_flash_interface.o" ".\objects\ota_protocol.o" ".\objects\ota_server.o" +".\objects\rf433_decoder.o" --strict --scatter ".\Linker\cpu_xip.scat" --feedback fb.txt --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols --info sizes --info totals --info unused --info veneers diff --git a/project/example/ble/ble_peripheral/mdk/Objects/aes.o b/project/example/ble/ble_peripheral/mdk/Objects/aes.o index 5d54923..438d1e4 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/aes.o and b/project/example/ble/ble_peripheral/mdk/Objects/aes.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/app_batt.o b/project/example/ble/ble_peripheral/mdk/Objects/app_batt.o index 022f43c..9b2d8c4 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/app_batt.o and b/project/example/ble/ble_peripheral/mdk/Objects/app_batt.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/app_sec.o b/project/example/ble/ble_peripheral/mdk/Objects/app_sec.o index 583432a..b29bb12 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/app_sec.o and b/project/example/ble/ble_peripheral/mdk/Objects/app_sec.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/app_task.o b/project/example/ble/ble_peripheral/mdk/Objects/app_task.o index 4defbf9..ec8a5c4 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/app_task.o and b/project/example/ble/ble_peripheral/mdk/Objects/app_task.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/arch_main.crf b/project/example/ble/ble_peripheral/mdk/Objects/arch_main.crf index beabac0..1923ce8 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/arch_main.crf and b/project/example/ble/ble_peripheral/mdk/Objects/arch_main.crf differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/arch_main.d b/project/example/ble/ble_peripheral/mdk/Objects/arch_main.d index f89ea45..b3047a1 100644 --- a/project/example/ble/ble_peripheral/mdk/Objects/arch_main.d +++ b/project/example/ble/ble_peripheral/mdk/Objects/arch_main.d @@ -138,3 +138,4 @@ .\objects\arch_main.o: ..\app\src\switch_s.h .\objects\arch_main.o: ..\app\src\key.h .\objects\arch_main.o: ..\app\src\fmc_spi_1.h +.\objects\arch_main.o: ..\app\src\rf433_decoder.h diff --git a/project/example/ble/ble_peripheral/mdk/Objects/arch_main.o b/project/example/ble/ble_peripheral/mdk/Objects/arch_main.o index 8921c3f..c039950 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/arch_main.o and b/project/example/ble/ble_peripheral/mdk/Objects/arch_main.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/ble_peripheral_ble-sdk-xip.dep b/project/example/ble/ble_peripheral/mdk/Objects/ble_peripheral_ble-sdk-xip.dep index 95f414e..d83cd06 100644 --- a/project/example/ble/ble_peripheral/mdk/Objects/ble_peripheral_ble-sdk-xip.dep +++ b/project/example/ble/ble_peripheral/mdk/Objects/ble_peripheral_ble-sdk-xip.dep @@ -296,7 +296,7 @@ I (..\..\..\..\..\component\ble\ip\ble\hl\src\gatt\gatt_db.h)(0x69BA751D) I (..\..\..\..\..\component\ble\ip\ble\api\xc_gatt_client_api.h)(0x69BA751D) I (..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\reg_ipcore.h)(0x69BA751E) I (..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_ipcore.h)(0x69BA751E) -F (..\app\src\arch_main.c)(0x6A45F672)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\arch_main.o --omf_browse .\objects\arch_main.crf --depend .\objects\arch_main.d) +F (..\app\src\arch_main.c)(0x6A4E2CF4)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\arch_main.o --omf_browse .\objects\arch_main.crf --depend .\objects\arch_main.d) I (..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h)(0x69BA751E) I (D:\Keil_v5\ARM\ARMCC\include\string.h)(0x5E8E3CC2) I (..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h)(0x69BA751D) @@ -418,6 +418,7 @@ I (..\app\src\timer.h)(0x6A448B24) I (..\app\src\switch_s.h)(0x6A44CDDA) I (..\app\src\key.h)(0x6A44B897) I (..\app\src\fmc_spi_1.h)(0x6A45C14C) +I (..\app\src\rf433_decoder.h)(0x6A478C34) F (..\app\src\app_sec.c)(0x69BA751F)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\app_sec.o --omf_browse .\objects\app_sec.crf --depend .\objects\app_sec.d) I (..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h)(0x69BA751E) I (D:\Keil_v5\ARM\ARMCC\include\string.h)(0x5E8E3CC2) @@ -2548,7 +2549,7 @@ I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x6 I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x69BA754E) I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x69BA754E) I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_bor.h)(0x69BA754E) -F (..\app\src\timer.c)(0x6A4638A8)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\timer.o --omf_browse .\objects\timer.crf --depend .\objects\timer.d) +F (..\app\src\timer.c)(0x6A4797EE)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\timer.o --omf_browse .\objects\timer.crf --depend .\objects\timer.d) I (..\app\src\timer.h)(0x6A448B24) I (D:\Keil_v5\ARM\ARMCC\include\stdio.h)(0x5E8E3CC2) I (D:\Keil_v5\ARM\ARMCC\include\string.h)(0x5E8E3CC2) @@ -2610,8 +2611,9 @@ I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_bor.h)(0x69BA I (..\app\src\timeslice.h)(0x6A44B3E4) I (..\app\src\led.h)(0x6A44B897) I (..\app\src\rf433.h)(0x6A44E9FC) +I (..\app\src\rf433_decoder.h)(0x6A478C34) F (..\app\src\timer.h)(0x6A448B24)() -F (..\app\src\timeslice.c)(0x6A45F672)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\timeslice.o --omf_browse .\objects\timeslice.crf --depend .\objects\timeslice.d) +F (..\app\src\timeslice.c)(0x6A4E2CF4)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\timeslice.o --omf_browse .\objects\timeslice.crf --depend .\objects\timeslice.d) I (..\app\src\timeslice.h)(0x6A44B3E4) I (..\app\src\uart_1.h)(0x6A44B556) I (D:\Keil_v5\ARM\ARMCC\include\stdio.h)(0x5E8E3CC2) @@ -2708,6 +2710,7 @@ I (..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_ I (..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_rx_cte_desc.h)(0x69BA751E) I (..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_wpal.h)(0x69BA751E) I (..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_ral.h)(0x69BA751E) +I (..\app\src\rf433_decoder.h)(0x6A478C34) F (..\app\src\timeslice.h)(0x6A44B3E4)() F (..\app\src\uart_1.c)(0x6A45CAC6)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\uart_1.o --omf_browse .\objects\uart_1.crf --depend .\objects\uart_1.d) I (..\app\src\uart_1.h)(0x6A44B556) @@ -2770,11 +2773,11 @@ I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x69BA I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_bor.h)(0x69BA754E) I (..\app\src\rf433.h)(0x6A44E9FC) F (..\app\src\uart_1.h)(0x6A44B556)() -F (..\app\src\rf433.c)(0x6A476C67)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\rf433.o --omf_browse .\objects\rf433.crf --depend .\objects\rf433.d) +F (..\app\src\rf433.c)(0x6A4E1DEE)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\rf433.o --omf_browse .\objects\rf433.crf --depend .\objects\rf433.d) I (..\app\src\rf433.h)(0x6A44E9FC) I (D:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2) -I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x69BA754E) I (D:\Keil_v5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x69BA754E) I (D:\Keil_v5\ARM\ARMCC\include\stdio.h)(0x5E8E3CC2) I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x69BA754E) I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc65xx.h)(0x69BA754E) @@ -2843,6 +2846,7 @@ I (..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h)(0x69BA751D) I (..\app\api\rwapp_config.h)(0x69BA751F) I (..\..\..\..\..\component\ble\modules\dbg\api\dbg_swdiag.h)(0x69BA751D) I (..\..\..\..\..\component\ble\modules\dbg\api\dbg_trc.h)(0x69BA751D) +I (..\app\src\rf433_decoder.h)(0x6A478C34) F (..\app\src\rf433.h)(0x6A44E9FC)() F (..\app\src\switch_s.c)(0x6A45CAC6)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\switch_s.o --omf_browse .\objects\switch_s.crf --depend .\objects\switch_s.d) I (..\app\src\switch_s.h)(0x6A44CDDA) @@ -3418,3 +3422,74 @@ I (..\..\..\..\..\component\ble\modules\nvds\api\nvds.h)(0x69BA751E) I (..\..\..\..\..\component\ble\ip\ble\api\xc_gatt_server_api.h)(0x69BA751D) I (..\..\..\..\..\component\ble\ip\ble\hl\src\gatt\gatt_db.h)(0x69BA751D) F (..\app\src\ota_server.h)(0x6A42276F)() +F (..\app\src\rf433_decoder.c)(0x6A4E0EB0)(--c99 --gnu -c --cpu Cortex-M0 --li -g -O3 --apcs=interwork --split_sections -I ..\..\..\..\..\component\ble\Include -I ..\app\api -I ..\..\..\..\..\component\ble\modules\aes\api -I ..\..\..\..\..\component\ble\modules\aes\src -I ..\..\..\..\..\component\ble\modules\common\api -I ..\..\..\..\..\component\ble\modules\common\src -I ..\..\..\..\..\component\ble\modules\ecc_p256\api -I ..\..\..\..\..\component\ble\modules\ecc_p256\src -I ..\..\..\..\..\component\ble\modules\h4tl\api -I ..\..\..\..\..\component\ble\modules\h4tl\src -I ..\..\..\..\..\component\ble\modules\ke\api -I ..\..\..\..\..\component\ble\modules\ke\src -I ..\..\..\..\..\component\ble\modules\nvds\api -I ..\..\..\..\..\component\ble\modules\nvds\src -I ..\..\..\..\..\component\ble\modules\rf\api -I ..\..\..\..\..\component\ble\modules\rf\src -I ..\..\..\..\..\component\ble\modules\rwip\api -I ..\..\..\..\..\component\ble\modules\rwip\src -I ..\..\..\..\..\component\ble\ip\ahi\api -I ..\..\..\..\..\component\ble\ip\ahi\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\api -I ..\..\..\..\..\component\ble\ip\ble\gaf\inc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\acc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\al -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\arc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\bc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\capa -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\codec -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\bap\uc -I ..\..\..\..\..\component\ble\ip\ble\gaf\src\iap -I ..\..\..\..\..\component\ble\ip\ble\hl\api -I ..\..\..\..\..\component\ble\ip\ble\hl\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gap\gapm -I ..\..\..\..\..\component\ble\ip\ble\hl\src\gatt -I ..\..\..\..\..\component\ble\ip\ble\hl\src\inc -I ..\..\..\..\..\component\ble\ip\ble\hl\src\l2cap -I ..\..\..\..\..\component\ble\ip\ble\ll\api -I ..\..\..\..\..\component\ble\ip\ble\ll\src -I ..\..\..\..\..\component\ble\ip\ble\ll\src\co -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llc -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lld -I ..\..\..\..\..\component\ble\ip\ble\ll\src\lli -I ..\..\..\..\..\component\ble\ip\ble\ll\src\llm -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\api -I ..\..\..\..\..\component\ble\ip\ble\profiles\bas\bass\src -I ..\..\..\..\..\component\ble\ip\em\api -I ..\..\..\..\..\component\ble\ip\em\src -I ..\..\..\..\..\component\ble\ip\hci\api -I ..\..\..\..\..\component\ble\ip\hci\src -I ..\..\..\..\..\component\ble\ip\sch\api -I ..\..\..\..\..\component\ble\ip\sch\src -I ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw -I ..\app\api -I ..\app\src -I ..\..\..\..\..\component\ble\plf\refip\src\arch -I ..\..\..\..\..\component\ble\plf\refip\src\arch\compiler\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\arch\ll\gnuarm -I ..\..\..\..\..\component\ble\plf\refip\src\driver\reg -I ..\..\..\..\..\component\ble\plf\refip\src\arch\boot\rvds -I ..\..\..\..\..\component\ble\plf\refip\src\driver\syscntl -I ..\..\..\..\..\component\ble\plf\refip\src\driver\emi -I ..\..\..\..\..\component\ble\plf\refip\src\driver\intc -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\ble\plf\refip\src\driver\flash -I ..\..\..\..\..\component\ble\plf\refip\src\driver\led -I ..\..\..\..\..\component\ble\modules\dbg\api -I ..\..\..\..\..\component\ble\plf\refip\src\driver\uart -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Startup\xc65xx -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Bitfields -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\Periph_HAL_Driver\Ringbuffer -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\PWR -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\test_case\TIMER -I ..\..\..\..\..\component\ble\ip\ble\api -I ..\..\..\..\..\component\ble\ip\ble\ll_rom_port -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver -I ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register -I ..\..\..\..\..\component\ble\modules\flash --gnu --diag_suppress=66 --feedback fb.txt -ID:\Keil_v5\Packs\ARM\CMSIS\5.9.0\Device\ARM\ARMCM0\Include -D__UVISION_VERSION="538" -DARMCM0 -DCONFIG_BT_WAKEUP_VIA_GPIO="0" -DCONFIG_HFCLK_IS_OSC32M_PLL_32M="1" -DSCATTER_LOAD_RAM_EM="1" -DSDK_VERSION="2058f68c" -DRC_32K="1" -DXC65XX -DCFG_BLE -DCFG_EMB -DCFG_STATIC -DHCI_TEST_NO_IP="0" -DCFG_ACT="2" -DCFG_CON="1" -DCFG_RAL="1" -DCFG_HOST -DCFG_APP -DCFG_APP_PRF -DCFG_RF_EXTRC -DCFG_AES_RPA -DCFG_PERIPHERAL -DUSE_XIP="1" -DDEBUG_ENABLE -DROM_ENV_ENABLE="0" -DCODE_USE_XIP -DCFG_PRF_BASS -DUSE_ROM_FLASH="1" -DSLEEP_ENABLE="0" -DCFG_ADV_LOW_POWER -DCFG_NVDS="0" -DCFG_MIN_STACK -DCFG_CONN_OPTIMIZE_0x3E -DPOWER_ON="0" -DADC_OFF -DAOTIMER_OFF -DDMA_OFF -DFMC_SPI_DMA_OFF -DI2C_OFF -DPGA_OFF -DPWM_OFF -DQDEC_OFF -DSPI_OFF -DSPI_DMA_OFF -DSW_I2C_OFF -DUART_DMA_OFF -DFAST_SPI -o .\objects\rf433_decoder.o --omf_browse .\objects\rf433_decoder.crf --depend .\objects\rf433_decoder.d) +I (..\app\src\rf433_decoder.h)(0x6A478C34) +I (D:\Keil_v5\ARM\ARMCC\include\stdbool.h)(0x5E8E3CC2) +I (D:\Keil_v5\ARM\ARMCC\include\stdint.h)(0x5E8E3CC2) +I (..\app\src\rf433_decoder_port.h)(0x6A4E2CF4) +I (..\..\..\..\..\component\ble\modules\dbg\api\dbg.h)(0x69BA751D) +I (..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h)(0x69BA751E) +I (D:\Keil_v5\ARM\ARMCC\include\string.h)(0x5E8E3CC2) +I (..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h)(0x69BA751D) +I (..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h)(0x69BA751D) +I (..\..\..\..\..\component\ble\ip\ble\hl\api\rwble_hl_error.h)(0x69BA751D) +I (..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h)(0x69BA751D) +I (..\app\api\rwapp_config.h)(0x69BA751F) +I (..\..\..\..\..\component\ble\modules\dbg\api\dbg_swdiag.h)(0x69BA751D) +I (..\..\..\..\..\component\ble\modules\dbg\api\dbg_trc.h)(0x69BA751D) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc65xx.h)(0x69BA754E) +I (D:\Keil_v5\ARM\ARMCC\include\stdio.h)(0x5E8E3CC2) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h)(0x69BA754E) +I (..\app\api\sdk_config.h)(0x69BA751F) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2s.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cdc.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_flash.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h)(0x69BA754E) +I (D:\Keil_v5\ARM\ARMCC\include\stdlib.h)(0x5E8E3CC2) +I (..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h)(0x69BA751D) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h)(0x69BA754E) +I (..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_bor.h)(0x69BA754E) +F (..\app\src\rf433_decoder.h)(0x6A478C34)() +F (..\app\src\rf433_decoder_port.h)(0x6A4E2CF4)() diff --git a/project/example/ble/ble_peripheral/mdk/Objects/fmc_spi_1.o b/project/example/ble/ble_peripheral/mdk/Objects/fmc_spi_1.o index e4d6002..693a976 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/fmc_spi_1.o and b/project/example/ble/ble_peripheral/mdk/Objects/fmc_spi_1.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/key.o b/project/example/ble/ble_peripheral/mdk/Objects/key.o index acb7d08..46c2f93 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/key.o and b/project/example/ble/ble_peripheral/mdk/Objects/key.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/led.o b/project/example/ble/ble_peripheral/mdk/Objects/led.o index bf0f769..12559a0 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/led.o and b/project/example/ble/ble_peripheral/mdk/Objects/led.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/nvds.o b/project/example/ble/ble_peripheral/mdk/Objects/nvds.o index ef22f48..59f6755 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/nvds.o and b/project/example/ble/ble_peripheral/mdk/Objects/nvds.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/ota_flash_interface.o b/project/example/ble/ble_peripheral/mdk/Objects/ota_flash_interface.o index f01d468..c639f60 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/ota_flash_interface.o and b/project/example/ble/ble_peripheral/mdk/Objects/ota_flash_interface.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/ota_protocol.o b/project/example/ble/ble_peripheral/mdk/Objects/ota_protocol.o index 2f9ca9e..33ba3d5 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/ota_protocol.o and b/project/example/ble/ble_peripheral/mdk/Objects/ota_protocol.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/ota_server.o b/project/example/ble/ble_peripheral/mdk/Objects/ota_server.o index 8356a5e..3be4df1 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/ota_server.o and b/project/example/ble/ble_peripheral/mdk/Objects/ota_server.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/rf433.crf b/project/example/ble/ble_peripheral/mdk/Objects/rf433.crf index 9e7747c..35dd157 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/rf433.crf and b/project/example/ble/ble_peripheral/mdk/Objects/rf433.crf differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/rf433.d b/project/example/ble/ble_peripheral/mdk/Objects/rf433.d index a1ef22f..68b2aba 100644 --- a/project/example/ble/ble_peripheral/mdk/Objects/rf433.d +++ b/project/example/ble/ble_peripheral/mdk/Objects/rf433.d @@ -1,8 +1,8 @@ .\objects\rf433.o: ..\app\src\rf433.c .\objects\rf433.o: ..\app\src\rf433.h .\objects\rf433.o: D:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h -.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h .\objects\rf433.o: D:\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h +.\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h .\objects\rf433.o: D:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h .\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h .\objects\rf433.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc65xx.h @@ -74,3 +74,4 @@ .\objects\rf433.o: ..\app\api\rwapp_config.h .\objects\rf433.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg_swdiag.h .\objects\rf433.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg_trc.h +.\objects\rf433.o: ..\app\src\rf433_decoder.h diff --git a/project/example/ble/ble_peripheral/mdk/Objects/rf433.o b/project/example/ble/ble_peripheral/mdk/Objects/rf433.o index d1ffeff..ed78946 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/rf433.o and b/project/example/ble/ble_peripheral/mdk/Objects/rf433.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.crf b/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.crf new file mode 100644 index 0000000..540a8b6 Binary files /dev/null and b/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.crf differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.d b/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.d new file mode 100644 index 0000000..65e1539 --- /dev/null +++ b/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.d @@ -0,0 +1,71 @@ +.\objects\rf433_decoder.o: ..\app\src\rf433_decoder.c +.\objects\rf433_decoder.o: ..\app\src\rf433_decoder.h +.\objects\rf433_decoder.o: D:\Keil_v5\ARM\ARMCC\Bin\..\include\stdbool.h +.\objects\rf433_decoder.o: D:\Keil_v5\ARM\ARMCC\Bin\..\include\stdint.h +.\objects\rf433_decoder.o: ..\app\src\rf433_decoder_port.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h +.\objects\rf433_decoder.o: D:\Keil_v5\ARM\ARMCC\Bin\..\include\string.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\ip\ble\ll\api\rwble_config.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwble_hl_config.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\ip\ble\hl\api\rwble_hl_error.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\ip\ble\hl\inc\rwprf_config.h +.\objects\rf433_decoder.o: ..\app\api\rwapp_config.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg_swdiag.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\modules\dbg\api\dbg_trc.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc65xx.h +.\objects\rf433_decoder.o: D:\Keil_v5\ARM\ARMCC\Bin\..\include\stdio.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cm0.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmInstr.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\core_cmFunc.h +.\objects\rf433_decoder.o: ..\app\api\sdk_config.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_conf.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cpr.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_offset.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cprao.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rf.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_adc.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_aotimer.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_dma.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_fmc_cache.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_gpio.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2c.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_qdec.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_i2s.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_comn.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_rtc.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_spi.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_timer.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_uart.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_wdt.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_pwm_timer.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc_m0_register\xc_reg_cdc.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_calib.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_clock.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_systick.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwr.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_aotimer.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_timer.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_rtc.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\ringbuffer.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_dma.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_flash.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_spi_dma.h +.\objects\rf433_decoder.o: D:\Keil_v5\ARM\ARMCC\Bin\..\include\stdlib.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\ble\modules\flash\xc6xxx_fmc_spi.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_fmc_spi_dma.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart_dma.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_i2c.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_sw_i2c.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_adc.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_pwm.h +.\objects\rf433_decoder.o: ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_bor.h diff --git a/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.o b/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.o new file mode 100644 index 0000000..21ab427 Binary files /dev/null and b/project/example/ble/ble_peripheral/mdk/Objects/rf433_decoder.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/sleep.o b/project/example/ble/ble_peripheral/mdk/Objects/sleep.o index bf1ae3b..8f1141a 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/sleep.o and b/project/example/ble/ble_peripheral/mdk/Objects/sleep.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/switch_s.o b/project/example/ble/ble_peripheral/mdk/Objects/switch_s.o index 6f6a4b3..fc8b898 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/switch_s.o and b/project/example/ble/ble_peripheral/mdk/Objects/switch_s.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/system_xinc.o b/project/example/ble/ble_peripheral/mdk/Objects/system_xinc.o index 909a756..2cdd47d 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/system_xinc.o and b/project/example/ble/ble_peripheral/mdk/Objects/system_xinc.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/timer.crf b/project/example/ble/ble_peripheral/mdk/Objects/timer.crf index c655a50..f5e6cf5 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/timer.crf and b/project/example/ble/ble_peripheral/mdk/Objects/timer.crf differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/timer.d b/project/example/ble/ble_peripheral/mdk/Objects/timer.d index c67d74e..6c57407 100644 --- a/project/example/ble/ble_peripheral/mdk/Objects/timer.d +++ b/project/example/ble/ble_peripheral/mdk/Objects/timer.d @@ -62,3 +62,4 @@ .\objects\timer.o: ..\app\src\timeslice.h .\objects\timer.o: ..\app\src\led.h .\objects\timer.o: ..\app\src\rf433.h +.\objects\timer.o: ..\app\src\rf433_decoder.h diff --git a/project/example/ble/ble_peripheral/mdk/Objects/timer.o b/project/example/ble/ble_peripheral/mdk/Objects/timer.o index e3580e9..06144f4 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/timer.o and b/project/example/ble/ble_peripheral/mdk/Objects/timer.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/timeslice.crf b/project/example/ble/ble_peripheral/mdk/Objects/timeslice.crf index cae16ae..990921d 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/timeslice.crf and b/project/example/ble/ble_peripheral/mdk/Objects/timeslice.crf differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/timeslice.d b/project/example/ble/ble_peripheral/mdk/Objects/timeslice.d index 1026743..787d2a1 100644 --- a/project/example/ble/ble_peripheral/mdk/Objects/timeslice.d +++ b/project/example/ble/ble_peripheral/mdk/Objects/timeslice.d @@ -103,3 +103,4 @@ .\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_rx_cte_desc.h .\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_wpal.h .\objects\timeslice.o: ..\..\..\..\..\component\ble\plf\refip\src\build\ble-full\reg\fw\_reg_em_ble_ral.h +.\objects\timeslice.o: ..\app\src\rf433_decoder.h diff --git a/project/example/ble/ble_peripheral/mdk/Objects/timeslice.o b/project/example/ble/ble_peripheral/mdk/Objects/timeslice.o index 24e223b..b0b5ce7 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/timeslice.o and b/project/example/ble/ble_peripheral/mdk/Objects/timeslice.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/uart_1.o b/project/example/ble/ble_peripheral/mdk/Objects/uart_1.o index e0be40f..049926f 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/uart_1.o and b/project/example/ble/ble_peripheral/mdk/Objects/uart_1.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/usr_server.o b/project/example/ble/ble_peripheral/mdk/Objects/usr_server.o index 0e1a6ec..96bc8d0 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/usr_server.o and b/project/example/ble/ble_peripheral/mdk/Objects/usr_server.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_adc.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_adc.o index 9e1c76d..34b06fd 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_adc.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_adc.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_aotimer.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_aotimer.o index a6daef5..f559527 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_aotimer.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_aotimer.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_bor.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_bor.o index 7172b94..d47dd10 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_bor.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_bor.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_calib.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_calib.o index 8c8a238..42f3413 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_calib.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_calib.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_clock.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_clock.o index fec60e9..eda4a41 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_clock.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_clock.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_dma.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_dma.o index a67df9d..5e56028 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_dma.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_dma.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_fmc_spi.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_fmc_spi.o index 87444e7..d1684e6 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_fmc_spi.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_fmc_spi.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_fmc_spi_dma.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_fmc_spi_dma.o index c10cf20..cab5fbe 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_fmc_spi_dma.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_fmc_spi_dma.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_gpio.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_gpio.o index 10fcc8a..43c1eb2 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_gpio.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_gpio.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_i2c.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_i2c.o index 14f4ea6..e22e4d2 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_i2c.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_i2c.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pga.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pga.o index 8171394..884b57c 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pga.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pga.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pwm.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pwm.o index 0150f68..9371164 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pwm.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pwm.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pwr.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pwr.o index 18d6e4d..d623bb6 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pwr.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_pwr.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_qdec.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_qdec.o index f875981..829d019 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_qdec.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_qdec.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_rtc.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_rtc.o index 95889fe..062068b 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_rtc.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_rtc.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_spi.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_spi.o index 07007ff..9d81025 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_spi.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_spi.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_spi_dma.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_spi_dma.o index 467b6a3..d2b41a7 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_spi_dma.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_spi_dma.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_sw_i2c.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_sw_i2c.o index 8bf7a59..c4112b4 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_sw_i2c.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_sw_i2c.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_systick.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_systick.o index 00cc969..485b4f9 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_systick.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_systick.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_timer.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_timer.o index 6bff8cc..e90a0b6 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_timer.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_timer.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_uart.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_uart.o index f14b6e0..320d761 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_uart.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_uart.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_uart_dma.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_uart_dma.o index 12fc90b..fe261e3 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_uart_dma.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_uart_dma.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_wdt.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_wdt.o index 711f848..bbab056 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_wdt.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_drv_wdt.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_gap_api.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_gap_api.o index 42e2f88..4b38224 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_gap_api.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_gap_api.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_gatt_client_api.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_gatt_client_api.o index 399c576..5244886 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_gatt_client_api.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_gatt_client_api.o differ diff --git a/project/example/ble/ble_peripheral/mdk/Objects/xc_gatt_server_api.o b/project/example/ble/ble_peripheral/mdk/Objects/xc_gatt_server_api.o index 52b02f7..cf964a7 100644 Binary files a/project/example/ble/ble_peripheral/mdk/Objects/xc_gatt_server_api.o and b/project/example/ble/ble_peripheral/mdk/Objects/xc_gatt_server_api.o differ diff --git a/project/example/ble/ble_peripheral/mdk/app.bin b/project/example/ble/ble_peripheral/mdk/app.bin index 557eca9..d699367 100644 Binary files a/project/example/ble/ble_peripheral/mdk/app.bin and b/project/example/ble/ble_peripheral/mdk/app.bin differ diff --git a/project/example/ble/ble_peripheral/mdk/ble_peripheral.bin b/project/example/ble/ble_peripheral/mdk/ble_peripheral.bin index 0f3069b..3437621 100644 Binary files a/project/example/ble/ble_peripheral/mdk/ble_peripheral.bin and b/project/example/ble/ble_peripheral/mdk/ble_peripheral.bin differ diff --git a/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvguix.QJM b/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvguix.QJM index 34ce4d1..4450d75 100644 --- a/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvguix.QJM +++ b/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvguix.QJM @@ -91,7 +91,7 @@ 44 2 - 2 + 3 -32000 -32000 @@ -101,17 +101,17 @@ -1 - 62 - 331 - 2251 - 1077 + 384 + 647 + 2567 + 1399 0 - 8413 - 010000000400000001000000010000000100000001000000000000000200000000000000010000000100000000000000280000002800000001000000340000000D0000000100000085433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C617263685F6D61696E2E63000000000B617263685F6D61696E2E6300000000C5D4F200FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C7573725F7365727665722E63000000000C7573725F7365727665722E6300000000FFDC7800FFFFFFFF89433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6D646B5C4C696E6B65725C6370755F7869702E73636174000000000C6370755F7869702E7363617400000000BECEA100FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C74696D65722E63000000000774696D65722E6300000000F0A0A100FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C74696D65722E68000000000774696D65722E6800000000BCA8E100FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C74696D65736C6963652E63000000000B74696D65736C6963652E63000000009CC1B600FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C74696D65736C6963652E68000000000B74696D65736C6963652E6800000000F7B88600FFFFFFFF82433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C756172745F312E630000000008756172745F312E6300000000D9ADC200FFFFFFFF82433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C756172745F312E680000000008756172745F312E6800000000A5C2D700FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C72663433332E63000000000772663433332E6300000000B3A6BE00FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C72663433332E68000000000772663433332E6800000000EAD6A300FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C7377697463685F732E63000000000A7377697463685F732E6300000000F6FA7D00FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C7377697463685F732E68000000000A7377697463685F732E6800000000B5E99D00FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C666D635F7370695F312E63000000000B666D635F7370695F312E63000000005FC3CF00FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C666D635F7370695F312E68000000000B666D635F7370695F312E6800000000C1838300FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6B65792E6300000000056B65792E6300000000CACAD500FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6B65792E6800000000056B65792E6800000000C5D4F200FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C434D5349535C4465766963655C7863363578782E6800000000087863363578782E6800000000FFDC7800FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6C65642E6300000000056C65642E6300000000BECEA100FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6C65642E6800000000056C65642E6800000000F0A0A100FFFFFFFF87433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C726F6D5F73796D646566732E6F000000000D726F6D5F73796D646566732E6F00000000BCA8E100FFFFFFFF74433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C727769705C6170695C727769702E680000000006727769702E68000000009CC1B600FFFFFFFF25443A5C4B65696C5F76355C41524D5C41524D43435C696E636C7564655C737464696E742E680000000008737464696E742E6800000000F7B88600FFFFFFFF9A433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C434D5349535C4465766963655C78635F6D305F72656769737465725C78635F7265675F6F66667365742E68000000000F78635F7265675F6F66667365742E6800000000D9ADC200FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F70776D2E63000000000C78635F6472765F70776D2E6300000000A5C2D700FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6170705F7461736B2E63000000000A6170705F7461736B2E6300000000B3A6BE00FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C6170695C6170705F7461736B2E68000000000A6170705F7461736B2E6800000000EAD6A300FFFFFFFF89433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F666D635F7370692E63000000001078635F6472765F666D635F7370692E6300000000F6FA7D00FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F756172742E63000000000D78635F6472765F756172742E6300000000B5E99D00FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C434D5349535C4465766963655C7863363078782E6800000000087863363078782E68000000005FC3CF00FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F6770696F2E63000000000D78635F6472765F6770696F2E6300000000C1838300FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F6770696F2E68000000000D78635F6472765F6770696F2E6800000000CACAD500FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C6170695C73646B5F636F6E6669672E68000000000C73646B5F636F6E6669672E6800000000C5D4F200FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6165732E6300000000056165732E6300000000FFDC7800FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C736C6565702E630000000007736C6565702E6300000000BECEA100FFFFFFFF83433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6170705F7365632E6300000000096170705F7365632E6300000000F0A0A100FFFFFFFF74433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C6E7664735C7372635C6E7664732E6300000000066E7664732E6300000000BCA8E100FFFFFFFF8D433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F666D635F7370695F646D612E63000000001478635F6472765F666D635F7370695F646D612E63000000009CC1B600FFFFFFFF8C433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F726F6D616464725F646566696E652E68000000001378635F726F6D616464725F646566696E652E6800000000F7B88600FFFFFFFF7B433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C727769705C6170695C727769705F636F6E6669672E68000000000D727769705F636F6E6669672E6800000000D9ADC200FFFFFFFF7C433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C69705C626C655C6170695C78635F676174745F636C69656E745F6170692E63000000001478635F676174745F636C69656E745F6170692E6300000000A5C2D700FFFFFFFF78433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C636F6D6D6F6E5C6170695C636F5F6275662E680000000008636F5F6275662E6800000000B3A6BE00FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F7370692E63000000000C78635F6472765F7370692E6300000000EAD6A300FFFFFFFF8F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F666C6173685F696E746572666163652E6300000000156F74615F666C6173685F696E746572666163652E6300000000F6FA7D00FFFFFFFF8F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F666C6173685F696E746572666163652E6800000000156F74615F666C6173685F696E746572666163652E6800000000B5E99D00FFFFFFFF72433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C6462675C6170695C6462672E6800000000056462672E68000000005FC3CF00FFFFFFFF88433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F70726F746F636F6C2E63000000000E6F74615F70726F746F636F6C2E6300000000C1838300FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F7365727665722E63000000000C6F74615F7365727665722E6300000000CACAD500FFFFFFFF88433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F70726F746F636F6C2E68000000000E6F74615F70726F746F636F6C2E6800000000C5D4F200FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F7764742E68000000000C78635F6472765F7764742E6800000000FFDC7800FFFFFFFF7B433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C666C6173685C7863367878785F666D635F7370692E6800000000107863367878785F666D635F7370692E6800000000BECEA100FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F6164632E63000000000C78635F6472765F6164632E6300000000F0A0A100FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD5000100000000000000020000004484FFFF4F83FFFF008DFFFF1E87FFFF + 9550 + 0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000003B000000000000000100000085433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C617263685F6D61696E2E63000000000B617263685F6D61696E2E6300000000C5D4F200FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C7573725F7365727665722E63000000000C7573725F7365727665722E6300000000FFDC7800FFFFFFFF89433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6D646B5C4C696E6B65725C6370755F7869702E73636174000000000C6370755F7869702E7363617400000000BECEA100FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C74696D65722E63000000000774696D65722E6300000000F0A0A100FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C74696D65722E68000000000774696D65722E6800000000BCA8E100FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C74696D65736C6963652E63000000000B74696D65736C6963652E63000000009CC1B600FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C74696D65736C6963652E68000000000B74696D65736C6963652E6800000000F7B88600FFFFFFFF82433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C756172745F312E630000000008756172745F312E6300000000D9ADC200FFFFFFFF82433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C756172745F312E680000000008756172745F312E6800000000A5C2D700FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C72663433332E63000000000772663433332E6300000000B3A6BE00FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C72663433332E68000000000772663433332E6800000000EAD6A300FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C7377697463685F732E63000000000A7377697463685F732E6300000000F6FA7D00FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C7377697463685F732E68000000000A7377697463685F732E6800000000B5E99D00FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C666D635F7370695F312E63000000000B666D635F7370695F312E63000000005FC3CF00FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C666D635F7370695F312E68000000000B666D635F7370695F312E6800000000C1838300FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6B65792E6300000000056B65792E6300000000CACAD500FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6B65792E6800000000056B65792E6800000000C5D4F200FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C434D5349535C4465766963655C7863363578782E6800000000087863363578782E6800000000FFDC7800FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6C65642E6300000000056C65642E6300000000BECEA100FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6C65642E6800000000056C65642E6800000000F0A0A100FFFFFFFF87433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C726F6D5F73796D646566732E6F000000000D726F6D5F73796D646566732E6F00000000BCA8E100FFFFFFFF74433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C727769705C6170695C727769702E680000000006727769702E68000000009CC1B600FFFFFFFF25443A5C4B65696C5F76355C41524D5C41524D43435C696E636C7564655C737464696E742E680000000008737464696E742E6800000000F7B88600FFFFFFFF9A433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C434D5349535C4465766963655C78635F6D305F72656769737465725C78635F7265675F6F66667365742E68000000000F78635F7265675F6F66667365742E6800000000D9ADC200FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F70776D2E63000000000C78635F6472765F70776D2E6300000000A5C2D700FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6170705F7461736B2E63000000000A6170705F7461736B2E6300000000B3A6BE00FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C6170695C6170705F7461736B2E68000000000A6170705F7461736B2E6800000000EAD6A300FFFFFFFF89433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F666D635F7370692E63000000001078635F6472765F666D635F7370692E6300000000F6FA7D00FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F756172742E63000000000D78635F6472765F756172742E6300000000B5E99D00FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C434D5349535C4465766963655C7863363078782E6800000000087863363078782E68000000005FC3CF00FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F6770696F2E63000000000D78635F6472765F6770696F2E6300000000C1838300FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F6770696F2E68000000000D78635F6472765F6770696F2E6800000000CACAD500FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C6170695C73646B5F636F6E6669672E68000000000C73646B5F636F6E6669672E6800000000C5D4F200FFFFFFFF7F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6165732E6300000000056165732E6300000000FFDC7800FFFFFFFF81433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C736C6565702E630000000007736C6565702E6300000000BECEA100FFFFFFFF83433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6170705F7365632E6300000000096170705F7365632E6300000000F0A0A100FFFFFFFF74433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C6E7664735C7372635C6E7664732E6300000000066E7664732E6300000000BCA8E100FFFFFFFF8D433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F666D635F7370695F646D612E63000000001478635F6472765F666D635F7370695F646D612E63000000009CC1B600FFFFFFFF8C433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F726F6D616464725F646566696E652E68000000001378635F726F6D616464725F646566696E652E6800000000F7B88600FFFFFFFF7B433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C727769705C6170695C727769705F636F6E6669672E68000000000D727769705F636F6E6669672E6800000000D9ADC200FFFFFFFF7C433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C69705C626C655C6170695C78635F676174745F636C69656E745F6170692E63000000001478635F676174745F636C69656E745F6170692E6300000000A5C2D700FFFFFFFF78433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C636F6D6D6F6E5C6170695C636F5F6275662E680000000008636F5F6275662E6800000000B3A6BE00FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F7370692E63000000000C78635F6472765F7370692E6300000000EAD6A300FFFFFFFF8F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F666C6173685F696E746572666163652E6300000000156F74615F666C6173685F696E746572666163652E6300000000F6FA7D00FFFFFFFF8F433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F666C6173685F696E746572666163652E6800000000156F74615F666C6173685F696E746572666163652E6800000000B5E99D00FFFFFFFF72433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C6462675C6170695C6462672E6800000000056462672E68000000005FC3CF00FFFFFFFF88433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F70726F746F636F6C2E63000000000E6F74615F70726F746F636F6C2E6300000000C1838300FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F7365727665722E63000000000C6F74615F7365727665722E6300000000CACAD500FFFFFFFF88433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F70726F746F636F6C2E68000000000E6F74615F70726F746F636F6C2E6800000000C5D4F200FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F7764742E68000000000C78635F6472765F7764742E6800000000FFDC7800FFFFFFFF7B433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C666C6173685C7863367878785F666D635F7370692E6800000000107863367878785F666D635F7370692E6800000000BECEA100FFFFFFFF85433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C78635F6472697665725C78635F6472765F6164632E63000000000C78635F6472765F6164632E6300000000F0A0A100FFFFFFFF89433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C72663433335F6465636F6465722E63000000000F72663433335F6465636F6465722E6300000000BCA8E100FFFFFFFF89433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C72663433335F6465636F6465722E68000000000F72663433335F6465636F6465722E68000000009CC1B600FFFFFFFF8E433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C72663433335F6465636F6465725F706F72742E68000000001472663433335F6465636F6465725F706F72742E6800000000F7B88600FFFFFFFF79433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C727769705C6170695C727769705F7461736B2E68000000000B727769705F7461736B2E6800000000D9ADC200FFFFFFFF76433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C626C655C6D6F64756C65735C6462675C6170695C6462675F7472632E6800000000096462675F7472632E6800000000A5C2D700FFFFFFFF86433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C70726F6A6563745C6578616D706C655C626C655C626C655F7065726970686572616C5C6170705C7372635C6F74615F7365727665722E68000000000C6F74615F7365727665722E6800000000B3A6BE00FFFFFFFF84433A5C55736572735C514A4D5C4465736B746F705C363531375F53444B5C584336585858CFB5C1D053444B5F32303236303432385C584336352B58433632CFB5C1D053444B5F32303236303432385C636F6D706F6E656E745C78633678785F647269766572735C447269766572735C434D5349535C4465766963655C7863367878782E6800000000087863367878782E6800000000EAD6A300FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD5000100000000000000020000004401000066000000000A000034040000 @@ -134,7 +134,7 @@ 16 - BE000000D50000007604000098010000 + 44010000660000007007000029010000 @@ -150,7 +150,7 @@ 0 16 - 03000000660000003D01000005040000 + 03000000660000003D01000004040000 16 @@ -170,7 +170,7 @@ 0 16 - 03000000660000003D01000005040000 + 03000000660000003D01000004040000 16 @@ -190,7 +190,7 @@ 0 16 - 00000000FA02000070070000BD030000 + 03000000FD0200006D070000A4030000 16 @@ -210,7 +210,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -230,7 +230,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -250,7 +250,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -270,7 +270,7 @@ 0 16 - 33060000660000006D07000047010000 + 33060000660000006D070000DD020000 16 @@ -330,7 +330,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -350,7 +350,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -370,7 +370,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -390,7 +390,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -410,7 +410,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -430,7 +430,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -450,7 +450,7 @@ 0 16 - 03000000660000003D01000005040000 + 03000000660000003D01000004040000 16 @@ -470,7 +470,7 @@ 0 16 - 03000000660000003D01000005040000 + 03000000660000003D01000004040000 16 @@ -490,7 +490,7 @@ 0 16 - 0300000039040000FD0900002D050000 + 0300000038040000FD0900002D050000 16 @@ -530,7 +530,7 @@ 0 16 - 03000000390400006D070000CC040000 + 0300000038040000FD0900002C050000 16 @@ -550,7 +550,7 @@ 0 16 - 44010000630000007007000012010000 + 47010000660000006D070000F9000000 16 @@ -610,7 +610,7 @@ 0 16 - 300600006300000070070000F6020000 + 33060000660000006D070000DD020000 16 @@ -630,7 +630,7 @@ 0 16 - 00000000FA02000070070000A9030000 + 03000000FD0200006D070000A4030000 16 @@ -690,7 +690,7 @@ 0 16 - 44010000630000007007000012010000 + 47010000660000006D070000F9000000 16 @@ -730,7 +730,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -750,7 +750,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -770,7 +770,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -790,7 +790,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -810,7 +810,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -830,7 +830,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -850,7 +850,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -870,7 +870,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -890,7 +890,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -910,7 +910,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -930,7 +930,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -950,7 +950,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -970,7 +970,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -990,7 +990,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1010,7 +1010,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1030,7 +1030,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1050,7 +1050,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1070,7 +1070,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1090,7 +1090,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1110,7 +1110,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1130,7 +1130,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1150,7 +1150,7 @@ 0 16 - 03000000660000003D010000A4030000 + 03000000660000003D01000005040000 16 @@ -1170,7 +1170,7 @@ 0 16 - 0300000039040000FD0900002D050000 + 0300000038040000FD0900002D050000 16 @@ -1190,7 +1190,7 @@ 0 16 - 03000000390400006D070000CC040000 + 0300000038040000FD0900002C050000 16 @@ -1210,7 +1210,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -1230,7 +1230,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -1250,7 +1250,7 @@ 0 16 - 03000000390400006D070000CC040000 + 0300000038040000FD0900002C050000 16 @@ -1270,7 +1270,7 @@ 0 16 - 03000000390400006D070000CC040000 + 0300000038040000FD0900002C050000 16 @@ -1310,7 +1310,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1330,7 +1330,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1350,7 +1350,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1370,7 +1370,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1390,7 +1390,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1410,7 +1410,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1430,7 +1430,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1450,7 +1450,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1470,7 +1470,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1490,7 +1490,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1510,7 +1510,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1530,7 +1530,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1550,7 +1550,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1570,7 +1570,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1590,7 +1590,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1610,7 +1610,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1630,7 +1630,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1650,7 +1650,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1670,7 +1670,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1690,7 +1690,7 @@ 0 16 - 33060000660000006D07000016020000 + 33060000660000006D070000DD020000 16 @@ -1704,7 +1704,7 @@ 0 0 0 - 32767 + 966 0 8192 0 @@ -1744,7 +1744,7 @@ 0 0 0 - 32767 + 476 0 8192 1 @@ -1764,7 +1764,7 @@ 0 0 0 - 32767 + 612 0 8192 2 @@ -1790,7 +1790,7 @@ 0 16 - 03000000FD0200006D07000090030000 + 03000000FD0200006D070000A4030000 16 @@ -1799,14 +1799,14 @@ 3312 - 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFF44010000120100007007000016010000000000000100001004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E650020000000000000BE000000D50000007604000098010000440100004F00000070070000120100000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF2C0600004F00000030060000F6020000000000000200001004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000BE000000D5000000FE010000E6010000300600004F00000070070000F602000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF400100004F000000440100001E040000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000BE000000D5000000FE010000E6010000000000004F000000400100001E0400000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF00000000E202000070070000E602000000000000010000100400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB09000001800080000000000000BE000000D5000000FE010000E601000000000000E602000070070000BD03000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFFB8030000E6020000BC030000BD03000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF000000001E040000000A00002204000001000000010000100400000001000000D7FBFFFFC3000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF0100007794000001800080000001000000BE000000D500000076040000980100000000000022040000000A0000460500000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572010000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFF44010000120100007007000016010000000000000100000004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E65002000000000000044010000660000007007000029010000440100004F00000070070000120100000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF2C0600004F00000030060000F6020000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C30000018000400000000000003006000066000000700700000D030000300600004F00000070070000F602000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF400100004F000000440100001D040000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C4000000739400000180001000000100000000000000660000004001000035040000000000004F000000400100001D0400000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF00000000E202000070070000E602000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB0900000180008000000000000000000000FD02000070070000D403000000000000E602000070070000BD03000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFFB8030000E6020000BC030000BD03000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF000000001D040000000A0000210400000100000001000010040000000100000037FCFFFF23010000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF01000077940000018000800000010000000000000039040000000A00005D0500000000000021040000000A0000460500000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572010000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 59392 File - 2929 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000C626C655F63616C6C6261636B96000000000000001400000D6170705F756172745F696E6974086164726573735F4809666C6173685F72756E17464D435F5350495F466C6173685F5772697465506167651A626C655F666C6173685F6C617465725F706167655F6572617365116765745F666F74615F656E765F616464720C6765745F666F74615F656E761B78635F666D635F7370695F666C6173685F77726974655F706167650F4B45595F53544154455F436C69636B0C4B45595F53544154455F72650B6672616D65735F74696D650D6368785F6770696F5F696E69740B7377697463685F696E6974137365745F5461736B436F6D70735F74696D65720F74696D6572305F63616C6C6261636B126770696F5F696E74725F63616C6C6261636B0B6C6F6E675F666C61675F7308464153545F5350490C6164726573735F696E6465780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000000000000010000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65FF7F0000 + 2952 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE8030000000000000000000000000000000000000000000000010000000100000096000000020020500000000017464D435F5350495F466C6173685F5772697465506167659600000000000000140010616E74695F7265706561745F7469636B12726563656976655F66696E73685F666C6167044C4F47491272663433335F6465636F64655F7265736574001172663433335F6F75747075745F636F64650573636F72651C72663433335F7570646174655F77696E646F775F62795F73636F72650A70706C5F6C6F636B65641552463433335F4652414D455F53434F52455F4D494E1172663433335F64656275675F7265736574036B6579087265735F646174610B72663433335F6672616D65056672616D651272663433335F6465636F6465725F696E69741152463433335F4445434F4445525F4C4F471A52463433335F4445434F4445525F44454255475F44455441494C17464D435F5350495F466C6173685F5772697465506167651B78635F666D635F7370695F666C6173685F77726974655F706167650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 1423 @@ -1822,7 +1822,7 @@ Build 1005 - 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0100000000000000000000000100000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050000000000B626C652D73646B2D786970960000000000000002000B626C652D73646B2D78697012626C652D73646B2D7869705F73696E676C6500000000000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64FF7F0000 + 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000002001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0100000000000000000000000100000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050000000000B626C652D73646B2D786970960000000000000002000B626C652D73646B2D78697012626C652D73646B2D7869705F73696E676C6500000000000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000 583 @@ -1838,7 +1838,7 @@ Debug 2373 - 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720100000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7201000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000000000000100000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000000000000100000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000000000000100000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720100000000000000000000000100000001000000000000000000000001000000000000000000054465627567FF7F0000 + 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7200000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72000000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 898 @@ -1862,21 +1862,21 @@ 0 100 - 13 + 0 ..\app\src\arch_main.c - 0 - 22 - 44 + 12 + 242 + 272 1 0 ..\app\src\usr_server.c - 5 - 1 - 119 + 0 + 64 + 120 1 0 @@ -1893,8 +1893,8 @@ ..\app\src\timer.c 4 - 44 - 67 + 117 + 167 1 0 @@ -1910,9 +1910,9 @@ ..\app\src\timeslice.c - 0 + 28 1 - 13 + 16 1 0 @@ -1928,9 +1928,9 @@ ..\app\src\uart_1.c - 18 - 13 - 50 + 24 + 4 + 42 1 0 @@ -1946,27 +1946,27 @@ ..\app\src\rf433.c - 118 - 110 - 159 + 22 + 314 + 487 1 0 ..\app\src\rf433.h - 23 - 27 - 48 + 0 + 1 + 15 1 0 ..\app\src\switch_s.c - 5 + 0 256 - 300 + 301 1 0 @@ -2019,7 +2019,7 @@ ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc65xx.h 0 - 1 + 60 116 1 @@ -2027,7 +2027,7 @@ ..\app\src\led.c - 12 + 14 1 24 1 @@ -2054,9 +2054,9 @@ ..\..\..\..\..\component\ble\modules\rwip\api\rwip.h - 12 - 971 - 1055 + 15 + 108 + 110 1 0 @@ -2100,7 +2100,7 @@ ..\app\api\app_task.h 0 - 73 + 251 307 1 @@ -2118,7 +2118,7 @@ ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_uart.c 0 - 7 + 1 1 1 @@ -2136,7 +2136,7 @@ ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.c 0 - 258 + 257 282 1 @@ -2144,9 +2144,9 @@ ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_gpio.h - 37 - 127 - 180 + 13 + 1 + 34 1 0 @@ -2154,7 +2154,7 @@ ..\app\api\sdk_config.h 0 - 97 + 96 97 1 @@ -2162,18 +2162,18 @@ ..\app\src\aes.c - 0 - 10 - 1 + 27 + 1 + 37 1 0 ..\app\src\sleep.c - 9 - 395 - 441 + 33 + 61 + 62 1 0 @@ -2216,9 +2216,9 @@ ..\..\..\..\..\component\ble\modules\rwip\api\rwip_config.h - 45 - 893 - 895 + 44 + 271 + 272 1 0 @@ -2226,7 +2226,7 @@ ..\..\..\..\..\component\ble\ip\ble\api\xc_gatt_client_api.c 24 - 74 + 73 125 1 @@ -2253,7 +2253,7 @@ ..\app\src\ota_flash_interface.c 0 - 65 + 64 114 1 @@ -2271,17 +2271,17 @@ ..\..\..\..\..\component\ble\modules\dbg\api\dbg.h 0 - 36 - 55 + 34 + 67 1 0 ..\app\src\ota_protocol.c - 3 - 463 - 499 + 56 + 72 + 73 1 0 @@ -2297,9 +2297,9 @@ ..\app\src\ota_protocol.h - 0 - 173 - 1 + 35 + 79 + 135 1 0 @@ -2307,7 +2307,7 @@ ..\..\..\..\..\component\xc6xx_drivers\Drivers\xc_driver\xc_drv_wdt.h 25 - 178 + 189 245 1 @@ -2331,6 +2331,69 @@ 0 + + ..\app\src\rf433_decoder.c + 17 + 155 + 200 + 1 + + 0 + + + ..\app\src\rf433_decoder.h + 0 + 1 + 17 + 1 + + 0 + + + ..\app\src\rf433_decoder_port.h + 36 + 1 + 20 + 1 + + 0 + + + ..\..\..\..\..\component\ble\modules\rwip\api\rwip_task.h + 55 + 122 + 178 + 1 + + 0 + + + ..\..\..\..\..\component\ble\modules\dbg\api\dbg_trc.h + 35 + 161 + 217 + 1 + + 0 + + + ..\app\src\ota_server.h + 0 + 1 + 1 + 1 + + 0 + + + ..\..\..\..\..\component\xc6xx_drivers\Drivers\CMSIS\Device\xc6xxx.h + 3 + 186 + 142 + 1 + + 0 + diff --git a/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvoptx b/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvoptx index 12e07b7..10b20a2 100644 --- a/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvoptx +++ b/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvoptx @@ -1095,6 +1095,42 @@ 0 0 + + 6 + 62 + 1 + 0 + 0 + 0 + ..\app\src\rf433_decoder.c + rf433_decoder.c + 0 + 0 + + + 6 + 63 + 5 + 0 + 0 + 0 + ..\app\src\rf433_decoder.h + rf433_decoder.h + 0 + 0 + + + 6 + 64 + 5 + 0 + 0 + 0 + ..\app\src\rf433_decoder_port.h + rf433_decoder_port.h + 0 + 0 + diff --git a/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvprojx b/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvprojx index 10b5f21..7fd1e25 100644 --- a/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvprojx +++ b/project/example/ble/ble_peripheral/mdk/ble_peripheral.uvprojx @@ -765,6 +765,21 @@ 5 ..\app\src\ota_server.h + + rf433_decoder.c + 1 + ..\app\src\rf433_decoder.c + + + rf433_decoder.h + 5 + ..\app\src\rf433_decoder.h + + + rf433_decoder_port.h + 5 + ..\app\src\rf433_decoder_port.h + @@ -1477,6 +1492,21 @@ 5 ..\app\src\ota_server.h + + rf433_decoder.c + 1 + ..\app\src\rf433_decoder.c + + + rf433_decoder.h + 5 + ..\app\src\rf433_decoder.h + + + rf433_decoder_port.h + 5 + ..\app\src\rf433_decoder_port.h + diff --git a/project/example/ble/ble_peripheral/mdk/fb.txt b/project/example/ble/ble_peripheral/mdk/fb.txt index e680d89..05a9b64 100644 --- a/project/example/ble/ble_peripheral/mdk/fb.txt +++ b/project/example/ble/ble_peripheral/mdk/fb.txt @@ -1,4 +1,4 @@ -;## ARM Linker, 5060960: Last Updated: Fri Jul 03 16:02:05 2026 +;## ARM Linker, 5060960: Last Updated: Thu Jul 09 18:43:35 2026 ;VERSION 0.2 ;FILE aes.o __asm___5_aes_c____REV16 <= USED 0 @@ -67,6 +67,11 @@ ota_svc_cb_event_sent <= USED 0 ;FILE rf433.o __asm___7_rf433_c_adress_H____REV16 <= USED 0 __asm___7_rf433_c_adress_H____REVSH <= USED 0 +rf433_receive <= USED 0 +;FILE rf433_decoder.o +__asm___15_rf433_decoder_c_5ba30fd7____REV16 <= USED 0 +__asm___15_rf433_decoder_c_5ba30fd7____REVSH <= USED 0 +rf433_decoder_get_lost_count <= USED 0 ;FILE sleep.o __asm___7_sleep_c_efd8dd31____REV16 <= USED 0 __asm___7_sleep_c_efd8dd31____REVSH <= USED 0 diff --git a/project/example/ble/ble_peripheral/mdk/output_bin/ble_peripheral.bin b/project/example/ble/ble_peripheral/mdk/output_bin/ble_peripheral.bin index 0f3069b..3437621 100644 Binary files a/project/example/ble/ble_peripheral/mdk/output_bin/ble_peripheral.bin and b/project/example/ble/ble_peripheral/mdk/output_bin/ble_peripheral.bin differ diff --git a/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_aes.bin b/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_aes.bin index be57360..6d62ba7 100644 Binary files a/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_aes.bin and b/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_aes.bin differ diff --git a/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_double.bin b/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_double.bin index fc6c611..291dad9 100644 Binary files a/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_double.bin and b/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_double.bin differ diff --git a/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_single.bin b/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_single.bin index 8253ec3..452bde0 100644 Binary files a/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_single.bin and b/project/example/ble/ble_peripheral/mdk/output_bin/ota_data_single.bin differ