diff --git a/App/Src/inflash.c b/App/Src/inflash.c index 8e6b837..d33e725 100644 --- a/App/Src/inflash.c +++ b/App/Src/inflash.c @@ -6,7 +6,7 @@ config_info g_stConfigInfo={ .flag_head = FLAG_SAVE_INFLASH_HEAD, .addr = 0x30, /* 默认地址 */ - .net_id = 0x00, /* 默认波特率 */ + .net_id = 0x00, /* 默认网络ID */ .flag_end = FLAG_SAVE_INFLASH_END, }; diff --git a/Core/Src/main.c b/Core/Src/main.c index 87a8465..82c694b 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -238,7 +238,7 @@ int main(void) /* Initialize all configured peripherals */ MX_USART1_UART_Init(9600); MX_USART3_UART_Init(9600); - HAL_GPIO_WritePin(RF_PWR_CTRL_GPIO_Port, RF_PWR_CTRL_Pin, GPIO_PIN_SET); + HAL_GPIO_WritePin(RF_PWR_CTRL_GPIO_Port, RF_PWR_CTRL_Pin, GPIO_PIN_SET);//浣胯兘e22 MX_GPIO_Init(); MX_DMA_Init(); MX_ADC1_Init(); @@ -274,9 +274,10 @@ int main(void) // HAL_DAC_SetValue(&hdac1,DAC_CHANNEL_1,DAC_ALIGN_12B_R,2048); //HAL_ADC_Start_DMA(&hadc1,(uint32_t *)result_data,DATA_LEN); // HAL_GPIO_TogglePin(GPIO_LED_GPIO_Port, GPIO_LED_Pin); - HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON,PWR_SLEEPENTRY_WFI); read_and_process_uart_data(g_term_uart_handle); read_and_process_uart_data(g_lora_uart_handle); + HAL_PWR_EnterSLEEPMode(PWR_MAINREGULATOR_ON,PWR_SLEEPENTRY_WFI); + // HAL_TIM_Base_Start(&htim6); diff --git a/Drivers/e22/e22.c b/Drivers/e22/e22.c new file mode 100644 index 0000000..43d51d7 --- /dev/null +++ b/Drivers/e22/e22.c @@ -0,0 +1,99 @@ +#include "e22.h" +#include "main.h" +#include "inflash.h" + +uint8_t e22_state = 0; +//c0 00 09 0000 00 64 00 0b 41 00 00 WOR定点发送 +//c0 00 09 0000 00 64 00 0b 49 00 00 WOR定点收 +/* 参数配置 */ +uint8_t e22_config_data[12] = { 0xc0, 0x00, 0x09, //写,0起始,9长度 + 0x00, 0x30, //地址 + 0x00, //网络ID + 0x64, //9600,8N1,9.6k + 0x00, + 0x0A, //信道10 + 0x49, + 0x00, 0x00}; //加密 + +static unsigned short CRC16(unsigned char *arr_buff, unsigned char len) +{ + unsigned short crc=0xFFFF; + unsigned char i, j; + for ( j=0; j0){ + crc=crc>>1; + crc=crc^ 0xa001; + }else{ + crc=crc>>1; + } + } + } + return crc; +} + +void lora_set_mode_normal() +{ + HAL_GPIO_WritePin(RF_M0_GPIO_Port, RF_M0_Pin, GPIO_PIN_RESET); + HAL_GPIO_WritePin(RF_M1_GPIO_Port, RF_M1_Pin, GPIO_PIN_RESET); +} + +void lora_set_mode_wor() +{ + HAL_GPIO_WritePin(RF_M0_GPIO_Port, RF_M0_Pin, GPIO_PIN_SET); + HAL_GPIO_WritePin(RF_M1_GPIO_Port, RF_M1_Pin, GPIO_PIN_RESET); +} + +void lora_set_mode_config() +{ + HAL_GPIO_WritePin(RF_M0_GPIO_Port, RF_M0_Pin, GPIO_PIN_RESET); + HAL_GPIO_WritePin(RF_M1_GPIO_Port, RF_M1_Pin, GPIO_PIN_SET); +} + +void lora_set_mode_sleep() +{ + HAL_GPIO_WritePin(RF_M0_GPIO_Port, RF_M0_Pin, GPIO_PIN_SET); + HAL_GPIO_WritePin(RF_M1_GPIO_Port, RF_M1_Pin, GPIO_PIN_SET); +} + +void lora_set_mode(e22_mode mode) +{ + switch(mode) + { + case NORMAL: + lora_set_mode_normal(); + HAL_Delay(200); + break; + case WOR: + lora_set_mode_wor(); + HAL_Delay(200); + break; + case CONFIG: + lora_set_mode_config(); + HAL_Delay(200); + break; + case SLEEP: + lora_set_mode_sleep(); + HAL_Delay(200); + break; + default: + break; + } +} + +void e22_init() +{ + uint8_t init_cmd[] = {0xC0, + 0x00, 0x09, + 0x00, 0x30, + 0x00, + 0x64, + 0x00, + 0x0A, + 0x48, + 0x00, 0x00 + }; + + lora_set_mode(CONFIG); +} \ No newline at end of file diff --git a/Drivers/e22/e22.h b/Drivers/e22/e22.h new file mode 100644 index 0000000..b966f81 --- /dev/null +++ b/Drivers/e22/e22.h @@ -0,0 +1,52 @@ +#ifndef __E22_H__ +#define __E22_H__ + +#ifdef __cplusplus +extern "C" { +#endif + + +#include "main.h" + +#define NORMAL 111 +#define WOR 222 +#define CONFIG 333 +#define SLEEP 444 + +#pragma pack(push,1) +typedef struct _e22_config_pack{ + unsigned char func; + unsigned char func; + unsigned char func; + unsigned char addr_h; + unsigned char addr_l; + unsigned char net_addr; + unsigned char baudRate; + unsigned char packetFragments; + unsigned char channel; + unsigned char transmissionMode; +}e22_config_pack; +#pragma pack(pop) + +typedef int e22_mode; + +extern UART_HandleTypeDef huart3; + +extern void Serial_SendArray_3(uint8_t *Array, uint16_t Length); + +void e22_config(void); +void lora_set_mode(e22_mode mode); +void e22_config_get(void); +void set_addr(uint8_t buf); +void set_net_id(uint8_t buf); + +extern uint16_t MB_register[40]; +extern uint8_t Transfer_Data_3[DATA_LEN_MAX]; //发送数据 +extern uint8_t Receive_Data_3[DATA_LEN_MAX]; //接收数据 + +#ifdef __cplusplus +} +#endif + +#endif /* __E22_H__ */ + diff --git a/EWARM/STM32L431_XL_CURRENT_V10.ewp b/EWARM/STM32L431_XL_CURRENT_V10.ewp index d38fc0e..dcb2644 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10.ewp +++ b/EWARM/STM32L431_XL_CURRENT_V10.ewp @@ -1163,6 +1163,12 @@ e22 + + $PROJ_DIR$\..\Drivers\e22\e22.c + + + $PROJ_DIR$\..\Drivers\e22\e22.h + ring_queue diff --git a/EWARM/STM32L431_XL_CURRENT_V10.ewt b/EWARM/STM32L431_XL_CURRENT_V10.ewt index 705477b..c2b5002 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10.ewt +++ b/EWARM/STM32L431_XL_CURRENT_V10.ewt @@ -1490,6 +1490,12 @@ e22 + + $PROJ_DIR$\..\Drivers\e22\e22.c + + + $PROJ_DIR$\..\Drivers\e22\e22.h + ring_queue diff --git a/EWARM/STM32L431_XL_CURRENT_V10/.ninja_deps b/EWARM/STM32L431_XL_CURRENT_V10/.ninja_deps index b340600..679b1e4 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/.ninja_deps and b/EWARM/STM32L431_XL_CURRENT_V10/.ninja_deps differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/.ninja_log b/EWARM/STM32L431_XL_CURRENT_V10/.ninja_log index 7549e6d..77addd0 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/.ninja_log +++ b/EWARM/STM32L431_XL_CURRENT_V10/.ninja_log @@ -39,3 +39,7 @@ 681 984 7427373050082772 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out cf929ff19a057992 2 1015 7427368740465524 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/APP_7160814934950161391.dir/uart_dev.o b3f3d06590d27380 2 574 7427370100596734 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/ring_queue_4579790358902792442.dir/ring_queue.o 9889b8e0bb5d827a +3694 4032 7427965085171427 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/e22_1376246393639769861.dir/e22.o b0a76782b987eed1 +3 4347 7427965088171039 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Obj/Core_13247989168731456611.dir/main.o e5719b7979ac0a6a +4348 10297 7427965147765739 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out 6dcc9a6ebfe249da +10298 10830 7427965153199204 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.hex 7d99c4510add455f diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_deps b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_deps index 97abcc2..6d5d779 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_deps and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_deps differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_log b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_log index 5a8b9ea..eb288fe 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_log +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/.ninja_log @@ -11,7 +11,7 @@ 3599 3965 7427368818036158 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.pbi e17a5115a0318c08 3074 3448 7427368812862453 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc_ex.pbi 6bd68485e05a5824 3305 3689 7427368815257829 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/CMSIS_6603591812247902717.dir/system_stm32l4xx.pbi 6e44238fa228aa1b -5627 6020 7427368838604531 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 242de219dde61a63 +771 1167 7428015694649133 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c 3111 3508 7427368813437568 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_cortex.pbi 405127a2c7d03ff4 94 744 7427368780000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.xcl 24cecdd3618d82d3 2292 2671 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.xcl d1c63dd3cf9ad64f @@ -20,7 +20,7 @@ 719 1238 7427368790000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.xcl 3d6a51876ed349f3 1829 2328 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_flash_ex.xcl 9d670aed6fe801b2 3966 4393 7427368822307122 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart.pbi 1df0e3f36e172d3a -2874 3462 7427368812982463 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d +1 433 7427980025554308 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d 1773 2250 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.xcl 869dfdad4c03c68b 129 731 7427368780000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/dma.xcl dd2e8108c9b4cd4b 3536 3906 7427368817440705 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_gpio.pbi 8fe9fe59491a7402 @@ -39,7 +39,7 @@ 2855 3198 7427368810347127 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/dac.pbi d4167f5afa6a6852 3845 4234 7427368820591509 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_i2c_ex.pbi 25cd7f2792fc1c89 1963 2382 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_exti.xcl 229c56d44a49dd7 -2384 2951 7427368807889331 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 +1 434 7427373094563182 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 1720 2148 7427368790000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma.xcl d6e005550c325468 4332 4800 7427368826365721 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_uart_ex.pbi b8a2c9d6e5220138 1298 1863 7427368790000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_dma_ex.xcl e73b3f3d49b841f3 @@ -54,7 +54,7 @@ 2252 2640 7427368800000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.xcl 6faee9ccd7fc018b 2741 3100 7427368809385319 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/dma.pbi 4051712cc6314e8e 2673 3050 7427368808873566 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/adc.pbi 9026c95d0949ec44 -2731 3110 7427368809490628 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 402dc11e5f378784 +1 347 7427370358649399 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 402dc11e5f378784 3199 3597 7427368814352700 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal.pbi a1436f6001436575 2802 3151 7427368809889492 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/tim.pbi ac776f032d051dac 3101 3481 7427368813177571 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_adc.pbi 44b852778065e0f6 @@ -68,75 +68,155 @@ 4466 5008 7427368828367389 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_pwr_ex.pbi 1b4f982e630f457e 3945 4464 7427368823017132 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim_ex.pbi c01c2dc90d721502 4226 4763 7427368826003070 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L4xx_HAL_Driver_2987639196379523013.dir/stm32l4xx_hal_tim.pbi fb7cdd34d037d5f9 -4802 5483 7427368833222272 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi f725d1716a0e514a -4395 5115 7427368829411642 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 3ebcc302e729bf1e -4058 4781 7427368826185714 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -4214 4820 7427368826435715 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi 53a4d98fb5135522 -5009 5626 7427368834653445 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi 6709e6eac817f1c8 -4236 4903 7427368827429030 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 -6020 7450 7427368852456809 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +167 2544 7427965181949408 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi d373232e53906c18 +338 770 7428015690678365 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +434 955 7427980030776327 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a +161 2081 7427965177306444 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi d113922f81021302 +80 2003 7427965176530087 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi 6fb320feec5cd23f +362 1054 7427977051579885 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 +1168 2623 7428015708770416 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 85 1188 7427368780000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.xcl 6b1623e9f156c572 1 1204 7427368780000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/uart_dev.xcl 85d7ecf7992ad1a5 -2507 2873 7427368807108787 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.pbi 32fa356aa05fd9c3 +1 361 7427977044636294 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.pbi 32fa356aa05fd9c3 2698 3072 7427368809105427 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/uart_dev.pbi ada5591d98e50876 -179 309 7427370144429183 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part6.pbi 14c65cec25037de2 -77 627 7427370147600520 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi 706a0a80f25ebbb9 -160 642 7427370147750489 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi 22fd516c3a4c796a +154 1098 7427965167474180 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part6.pbi c3bb6657d2a1570c 1 665 7427370140000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/ring_queue_4579790358902792442.dir/ring_queue.xcl 8b2eeecf86da4720 -168 736 7427370148095766 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi 9c7142f35d8a18e7 667 774 7427370149073953 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/ring_queue_4579790358902792442.dir/ring_queue.pbi 5dc999b5980b5ccc -775 1137 7427370152715279 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 57e8bfcfc2effc84 -1138 1554 7427370156873559 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1555 3025 7427370171138908 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 355 7427370226664690 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 402dc11e5f378784 -356 860 7427370231728425 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -861 1276 7427370235897260 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1278 2655 7427370249229209 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 347 7427370358649399 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/stm32l4xx_it.pbi 402dc11e5f378784 -348 988 7427370365072541 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -989 1391 7427370369103264 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1392 2758 7427370382300435 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 424 7427371408328538 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -425 928 7427371413373370 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -929 1332 7427371417404189 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1333 2703 7427371430684352 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 421 7427371538024021 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -422 946 7427371543283545 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -947 1351 7427371547340770 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1352 2759 7427371560958579 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 424 7427371719267617 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -425 928 7427371724314241 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -929 1337 7427371728393421 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1338 2814 7427371741892155 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 439 7427371799138621 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -440 962 7427371804385911 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -964 1370 7427371808464047 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1371 2761 7427371821951867 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 447 7427372031467759 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -448 958 7427372036588756 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -958 1358 7427372040577425 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1359 2845 7427372055023128 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 434 7427372111334828 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -435 939 7427372116384425 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -940 1344 7427372120445328 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1345 2766 7427372134192990 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 552 7427372293969388 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -553 1071 7427372299181585 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -1072 1493 7427372303385255 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1494 2909 7427372317092742 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 445 7427372372861101 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -446 941 7427372377817044 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -941 1417 7427372382577055 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1418 2909 7427372396585518 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 443 7427372963505325 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 -444 956 7427372968641183 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 -957 1364 7427372972720678 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1365 2770 7427372986321161 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 434 7427373094563182 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/frt_protocol.pbi a6206471558c9216 -434 932 7427373099566373 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part0.pbi d2c2c8300cfc2496 -933 1405 7427373104291061 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1406 2899 7427373118785280 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 -1 449 7427375472730044 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi c9f7e08b3705388d -450 946 7427375477714646 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi 8873bd53e411db0a -947 1345 7427375481701965 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c -1346 2743 7427375495235960 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 1695 7427965170000000 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.xcl 5f03e4cf4bc71ecd +1 337 7428015686332995 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +2 382 7428016226663216 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +383 843 7428016231284763 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +844 1255 7428016235404245 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1256 2774 7428016250062810 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 365 7428016306183805 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +366 785 7428016310383975 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +786 1181 7428016314355030 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1182 2710 7428016328316345 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 342 7428016539600794 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +342 772 7428016543904594 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +773 1172 7428016547917305 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1173 2536 7428016561119546 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 385 7428016821443289 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +386 812 7428016825727345 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +813 1216 7428016829767339 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1217 2609 7428016843201860 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 343 7428017155404596 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +344 775 7428017159716874 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +776 1289 7428017164859861 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1290 2819 7428017179724726 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 433 7428019591139990 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +433 852 7428019595334834 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +853 1260 7428019599426988 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1261 2628 7428019612657038 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 345 7428019668179341 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +346 828 7428019673024475 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +829 1230 7428019677036758 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1231 2609 7428019690385757 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 367 7428019745963036 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +368 809 7428019750386619 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +809 1232 7428019754634804 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1233 2597 7428019767834860 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 350 7428019823458743 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +351 781 7428019827778988 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +782 1177 7428019831741372 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1178 2565 7428019845195563 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 346 7428020105134539 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +346 812 7428020109803689 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +812 1229 7428020113974553 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1229 2569 7428020126928825 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 356 7428020233596296 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +357 781 7428020237854918 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +783 1181 7428020241854366 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1182 2601 7428020255611746 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 349 7428020311205545 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +350 785 7428020315572648 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +786 1184 7428020319564299 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1185 2609 7428020333313155 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 357 7428020389016186 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +358 796 7428020393406366 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +797 1199 7428020397437501 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1200 2606 7428020411014202 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 351 7428020466637034 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +351 782 7428020470957805 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +783 1187 7428020475011746 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1188 2645 7428020489144889 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 357 7428022086371571 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +358 810 7428022090916804 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +811 1231 7428022095123497 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1232 2777 7428022108758323 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 387 7428022268058060 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +388 866 7428022272858184 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +867 1271 7428022276907100 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1272 2662 7428022290337437 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 365 7428022346104886 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +366 810 7428022350566750 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +811 1219 7428022354662368 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1220 2622 7428022368219146 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 349 7428022475024048 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +349 803 7428022479577322 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +804 1205 7428022483601892 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1206 2617 7428022497265318 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 350 7428022552780962 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +350 779 7428022557085170 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +780 1179 7428022561088004 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1180 2548 7428022574340584 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 350 7428023244066741 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +351 807 7428023248653537 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +808 1210 7428023252671894 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1211 2629 7428023266431586 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 346 7428023322020802 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +347 772 7428023326296582 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +773 1170 7428023330279282 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1170 2545 7428023343587542 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 350 7428023501608274 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +351 783 7428023505954003 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +784 1195 7428023510087276 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1196 2618 7428023523852670 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 343 7428023579551773 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +344 788 7428023584024864 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +789 1193 7428023588076716 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1194 2569 7428023601392320 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 354 7428023912509830 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +355 784 7428023916826226 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +785 1198 7428023920961486 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1199 2657 7428023935077781 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 350 7428023990769086 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +351 787 7428023995138777 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +788 1188 7428023999153398 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1189 2559 7428024012418865 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 351 7428024068023309 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +352 786 7428024072393555 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +787 1182 7428024076350411 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1183 2549 7428024089573668 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 386 7428024196695802 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +387 830 7428024201160015 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +831 1227 7428024205126975 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1228 2654 7428024218396243 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 347 7428024274466267 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +348 773 7428024278727980 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +773 1165 7428024282642273 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1165 2557 7428024296144102 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 359 7428024402908024 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +360 791 7428024407233632 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +791 1200 7428024411333634 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1201 2653 7428024425427427 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 343 7428025608038688 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +345 756 7428025612169294 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +757 1158 7428025616201594 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1159 2533 7428025629524243 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 362 7428026351569983 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +363 802 7428026355994434 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +803 1203 7428026359995214 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1204 2680 7428026374268378 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +1 383 7428026634922198 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +384 822 7428026639332792 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +823 1236 7428026643476048 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1238 2697 7428026657657547 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 355 7428026969415883 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +356 808 7428026973951506 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +808 1215 7428026978026951 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1216 2620 7428026991641122 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 +2 366 7428027200738065 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi 1e60e37e921982f2 +367 813 7428027205212065 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi 89d5ebedd6a44a3f +814 1216 7428027209247545 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd 7d988f50a231d34c +1216 2720 7428027223828069 E:/Y/IAR/stm32l431_xl_current_with_uart/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b4bd3873c8b9c214 diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.pbi.dep b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.pbi.dep new file mode 100644 index 0000000..465f940 --- /dev/null +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/inflash.pbi.dep @@ -0,0 +1,59 @@ +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\APP_7160814934950161391.dir\inflash.pbi: \ + E:\Y\IAR\stm32l431_xl_current_with_uart\App\Src\inflash.c \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ring_queue.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/uart_dev.pbi.dep b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/uart_dev.pbi.dep index f27e3ff..e257d90 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/uart_dev.pbi.dep +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/APP_7160814934950161391.dir/uart_dev.pbi.dep @@ -1,59 +1,60 @@ E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\APP_7160814934950161391.dir\uart_dev.pbi: \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\gpio.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\stdarg.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\App\Src\uart_dev.c \ E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \ E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ring_queue.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\App\Src\uart_dev.c + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdarg.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\gpio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/adc.pbi.dep b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/adc.pbi.dep new file mode 100644 index 0000000..39a4620 --- /dev/null +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/adc.pbi.dep @@ -0,0 +1,48 @@ +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\adc.pbi: \ + E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\adc.c \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi index e69de29..2b41aa7 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi.dep b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi.dep index 6034a65..d19a99b 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi.dep +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/main.pbi.dep @@ -1,65 +1,67 @@ E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\main.pbi: \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\frt_protocol.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ring_queue.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_float_setup.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\math.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\gpio.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\tim.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\dma.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\dac.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\adc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \ - D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\main.c \ E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \ - E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\main.c + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\dac.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\dma.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\tim.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\gpio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Inc\arm_math.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\string.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product_string.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\math.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_float_setup.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ring_queue.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\assertions.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\pdebug.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\uart_dev.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\frt_protocol.h diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/usart.pbi.dep b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/usart.pbi.dep new file mode 100644 index 0000000..5e8de84 --- /dev/null +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/Core_13247989168731456611.dir/usart.pbi.dep @@ -0,0 +1,48 @@ +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\usart.pbi: \ + E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\usart.c \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\usart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd index b5e0411..eab3454 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd.browse b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd.browse index b5e0411..eab3454 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd.browse and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbd.browse differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw index d0dfe80..8c94c7e 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10.pbw @@ -331792,7 +331792,7 @@ "display": "void SystemClock_Config(void)", "location": { "column": "6", - "line": "291", + "line": "292", "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\main.c" }, "name": "SystemClock_Config", @@ -331800,13 +331800,13 @@ "scope": null }, { - "ID": "c:main.c@8124@F@SystemClock_Config@RCC_OscInitStruct", + "ID": "c:main.c@8137@F@SystemClock_Config@RCC_OscInitStruct", "What": "Variable", "defdec": "Def", "display": "RCC_OscInitStruct", "location": { "column": "22", - "line": "293", + "line": "294", "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\main.c" }, "name": "RCC_OscInitStruct", @@ -331814,13 +331814,13 @@ "scope": null }, { - "ID": "c:main.c@8171@F@SystemClock_Config@RCC_ClkInitStruct", + "ID": "c:main.c@8184@F@SystemClock_Config@RCC_ClkInitStruct", "What": "Variable", "defdec": "Def", "display": "RCC_ClkInitStruct", "location": { "column": "22", - "line": "294", + "line": "295", "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\main.c" }, "name": "RCC_ClkInitStruct", @@ -331834,7 +331834,7 @@ "display": "void Error_Handler(void)", "location": { "column": "6", - "line": "337", + "line": "338", "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\main.c" }, "name": "Error_Handler", @@ -332793,6 +332793,90 @@ "origin": "project_file", "scope": null }, + { + "ID": "c:@F@InitRingQueue", + "What": "Function", + "defdec": "Def", + "display": "int InitRingQueue(RingQueue *, RQ_ElementType *, int)", + "location": { + "column": "5", + "line": "16", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" + }, + "name": "InitRingQueue", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@ShowRingQueue", + "What": "Function", + "defdec": "Def", + "display": "int ShowRingQueue(RingQueue *)", + "location": { + "column": "5", + "line": "26", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" + }, + "name": "ShowRingQueue", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:ring_queue.c@510@F@ShowRingQueue@rear", + "What": "Variable", + "defdec": "Def", + "display": "rear", + "location": { + "column": "6", + "line": "29", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" + }, + "name": "rear", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@InRingQueue", + "What": "Function", + "defdec": "Def", + "display": "int InRingQueue(RingQueue *, RQ_ElementType)", + "location": { + "column": "5", + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" + }, + "name": "InRingQueue", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@OutRingQueue", + "What": "Function", + "defdec": "Def", + "display": "int OutRingQueue(RingQueue *, RQ_ElementType *)", + "location": { + "column": "5", + "line": "61", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" + }, + "name": "OutRingQueue", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@RingQueueLength", + "What": "Function", + "defdec": "Def", + "display": "int RingQueueLength(RingQueue *)", + "location": { + "column": "5", + "line": "75", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" + }, + "name": "RingQueueLength", + "origin": "project_file", + "scope": null + }, { "ID": "c:stdlib.h@102@macro@_STDLIB", "What": "MacroDef", @@ -333793,412 +333877,6 @@ "origin": "system_include", "scope": null }, - { - "ID": "c:@F@InitRingQueue", - "What": "Function", - "defdec": "Def", - "display": "int InitRingQueue(RingQueue *, RQ_ElementType *, int)", - "location": { - "column": "5", - "line": "16", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" - }, - "name": "InitRingQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@ShowRingQueue", - "What": "Function", - "defdec": "Def", - "display": "int ShowRingQueue(RingQueue *)", - "location": { - "column": "5", - "line": "26", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" - }, - "name": "ShowRingQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:ring_queue.c@510@F@ShowRingQueue@rear", - "What": "Variable", - "defdec": "Def", - "display": "rear", - "location": { - "column": "6", - "line": "29", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" - }, - "name": "rear", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@InRingQueue", - "What": "Function", - "defdec": "Def", - "display": "int InRingQueue(RingQueue *, RQ_ElementType)", - "location": { - "column": "5", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" - }, - "name": "InRingQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@OutRingQueue", - "What": "Function", - "defdec": "Def", - "display": "int OutRingQueue(RingQueue *, RQ_ElementType *)", - "location": { - "column": "5", - "line": "61", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" - }, - "name": "OutRingQueue", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@RingQueueLength", - "What": "Function", - "defdec": "Def", - "display": "int RingQueueLength(RingQueue *)", - "location": { - "column": "5", - "line": "75", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\RingQueue\\ring_queue.c" - }, - "name": "RingQueueLength", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@SystemCoreClock", - "What": "Variable", - "defdec": "Def", - "display": "SystemCoreClock", - "location": { - "column": "12", - "line": "170", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "SystemCoreClock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@AHBPrescTable", - "What": "Variable", - "defdec": "Def", - "display": "AHBPrescTable", - "location": { - "column": "18", - "line": "172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "AHBPrescTable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@APBPrescTable", - "What": "Variable", - "defdec": "Def", - "display": "APBPrescTable", - "location": { - "column": "18", - "line": "173", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "APBPrescTable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@MSIRangeTable", - "What": "Variable", - "defdec": "Def", - "display": "MSIRangeTable", - "location": { - "column": "18", - "line": "174", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "MSIRangeTable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SystemInit", - "What": "Function", - "defdec": "Def", - "display": "void SystemInit(void)", - "location": { - "column": "6", - "line": "197", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "SystemInit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@SystemCoreClockUpdate", - "What": "Function", - "defdec": "Def", - "display": "void SystemCoreClockUpdate(void)", - "location": { - "column": "6", - "line": "251", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "SystemCoreClockUpdate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@tmp", - "What": "Variable", - "defdec": "Def", - "display": "tmp", - "location": { - "column": "12", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "tmp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@msirange", - "What": "Variable", - "defdec": "Dec", - "display": "msirange", - "location": { - "column": "17", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "msirange", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@pllvco", - "What": "Variable", - "defdec": "Dec", - "display": "pllvco", - "location": { - "column": "27", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "pllvco", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@pllsource", - "What": "Variable", - "defdec": "Dec", - "display": "pllsource", - "location": { - "column": "35", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "pllsource", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@pllm", - "What": "Variable", - "defdec": "Dec", - "display": "pllm", - "location": { - "column": "46", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "pllm", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@pllr", - "What": "Variable", - "defdec": "Dec", - "display": "pllr", - "location": { - "column": "52", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" - }, - "name": "pllr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@251@macro@_DLIB_PRODUCTS_STDLIB_H_", - "What": "MacroDef", - "defdec": "Def", - "display": "_DLIB_PRODUCTS_STDLIB_H_", - "location": { - "column": "9", - "line": "10", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "_DLIB_PRODUCTS_STDLIB_H_", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@div", - "What": "Function", - "defdec": "Def", - "display": "div_t div(int, int)", - "location": { - "column": "7", - "line": "29", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "div", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@647@F@div@q", - "What": "Variable", - "defdec": "Def", - "display": "q", - "location": { - "column": "7", - "line": "32", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "q", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@665@F@div@r", - "What": "Variable", - "defdec": "Def", - "display": "r", - "location": { - "column": "7", - "line": "33", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "r", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@687@F@div@d", - "What": "Variable", - "defdec": "Def", - "display": "d", - "location": { - "column": "9", - "line": "34", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "d", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@ldiv", - "What": "Function", - "defdec": "Def", - "display": "ldiv_t ldiv(long, long)", - "location": { - "column": "8", - "line": "45", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "ldiv", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@1014@F@ldiv@q", - "What": "Variable", - "defdec": "Def", - "display": "q", - "location": { - "column": "7", - "line": "54", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "q", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@1032@F@ldiv@r", - "What": "Variable", - "defdec": "Def", - "display": "r", - "location": { - "column": "7", - "line": "55", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "r", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:DLib_Product_stdlib.h@1054@F@ldiv@ld", - "What": "Variable", - "defdec": "Def", - "display": "ld", - "location": { - "column": "10", - "line": "56", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "ld", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@__aeabi_ldivmod", - "What": "Function", - "defdec": "Dec", - "display": "lldiv_t __aeabi_ldivmod(long long, long long)", - "location": { - "column": "13", - "line": "83", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "__aeabi_ldivmod", - "origin": "system_include", - "scope": null - }, - { - "ID": "c:@F@lldiv", - "What": "Function", - "defdec": "Def", - "display": "lldiv_t lldiv(long long, long long)", - "location": { - "column": "13", - "line": "87", - "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" - }, - "name": "lldiv", - "origin": "system_include", - "scope": null - }, { "ID": "c:stm32l4xx_hal.c@1848@macro@STM32L4XX_HAL_VERSION_MAIN", "What": "MacroDef", @@ -335011,6 +334689,876 @@ "origin": "project_file", "scope": null }, + { + "ID": "c:@SystemCoreClock", + "What": "Variable", + "defdec": "Def", + "display": "SystemCoreClock", + "location": { + "column": "12", + "line": "170", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "SystemCoreClock", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@AHBPrescTable", + "What": "Variable", + "defdec": "Def", + "display": "AHBPrescTable", + "location": { + "column": "18", + "line": "172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "AHBPrescTable", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@APBPrescTable", + "What": "Variable", + "defdec": "Def", + "display": "APBPrescTable", + "location": { + "column": "18", + "line": "173", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "APBPrescTable", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@MSIRangeTable", + "What": "Variable", + "defdec": "Def", + "display": "MSIRangeTable", + "location": { + "column": "18", + "line": "174", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "MSIRangeTable", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@SystemInit", + "What": "Function", + "defdec": "Def", + "display": "void SystemInit(void)", + "location": { + "column": "6", + "line": "197", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "SystemInit", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@SystemCoreClockUpdate", + "What": "Function", + "defdec": "Def", + "display": "void SystemCoreClockUpdate(void)", + "location": { + "column": "6", + "line": "251", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "SystemCoreClockUpdate", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@tmp", + "What": "Variable", + "defdec": "Def", + "display": "tmp", + "location": { + "column": "12", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "tmp", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@msirange", + "What": "Variable", + "defdec": "Dec", + "display": "msirange", + "location": { + "column": "17", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "msirange", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@pllvco", + "What": "Variable", + "defdec": "Dec", + "display": "pllvco", + "location": { + "column": "27", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "pllvco", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@pllsource", + "What": "Variable", + "defdec": "Dec", + "display": "pllsource", + "location": { + "column": "35", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "pllsource", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@pllm", + "What": "Variable", + "defdec": "Dec", + "display": "pllm", + "location": { + "column": "46", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "pllm", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:system_stm32l4xx.c@10765@F@SystemCoreClockUpdate@pllr", + "What": "Variable", + "defdec": "Dec", + "display": "pllr", + "location": { + "column": "52", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Core\\Src\\system_stm32l4xx.c" + }, + "name": "pllr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@e22_state", + "What": "Variable", + "defdec": "Def", + "display": "e22_state", + "location": { + "column": "9", + "line": "5", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "e22_state", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@e22_config_data", + "What": "Variable", + "defdec": "Def", + "display": "e22_config_data", + "location": { + "column": "9", + "line": "9", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "e22_config_data", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:e22.c@F@CRC16", + "What": "Function", + "defdec": "Def", + "display": "unsigned short CRC16(unsigned char *, unsigned char)", + "location": { + "column": "23", + "line": "18", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "CRC16", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:e22.c@893@F@CRC16@crc", + "What": "Variable", + "defdec": "Def", + "display": "crc", + "location": { + "column": "17", + "line": "20", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "crc", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:e22.c@922@F@CRC16@i", + "What": "Variable", + "defdec": "Def", + "display": "i", + "location": { + "column": "16", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "i", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:e22.c@922@F@CRC16@j", + "What": "Variable", + "defdec": "Dec", + "display": "j", + "location": { + "column": "19", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "j", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@lora_set_mode_normal", + "What": "Function", + "defdec": "Def", + "display": "void lora_set_mode_normal(void)", + "location": { + "column": "6", + "line": "36", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "lora_set_mode_normal", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@lora_set_mode_wor", + "What": "Function", + "defdec": "Def", + "display": "void lora_set_mode_wor(void)", + "location": { + "column": "6", + "line": "42", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "lora_set_mode_wor", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@lora_set_mode_config", + "What": "Function", + "defdec": "Def", + "display": "void lora_set_mode_config(void)", + "location": { + "column": "6", + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "lora_set_mode_config", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@lora_set_mode_sleep", + "What": "Function", + "defdec": "Def", + "display": "void lora_set_mode_sleep(void)", + "location": { + "column": "6", + "line": "54", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "lora_set_mode_sleep", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@lora_set_mode", + "What": "Function", + "defdec": "Def", + "display": "void lora_set_mode(e22_mode)", + "location": { + "column": "6", + "line": "60", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "lora_set_mode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@e22_init", + "What": "Function", + "defdec": "Def", + "display": "void e22_init(void)", + "location": { + "column": "6", + "line": "85", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "e22_init", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:e22.c@2334@F@e22_init@init_cmd", + "What": "Variable", + "defdec": "Def", + "display": "init_cmd", + "location": { + "column": "13", + "line": "87", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.c" + }, + "name": "init_cmd", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:DLib_Product_stdlib.h@251@macro@_DLIB_PRODUCTS_STDLIB_H_", + "What": "MacroDef", + "defdec": "Def", + "display": "_DLIB_PRODUCTS_STDLIB_H_", + "location": { + "column": "9", + "line": "10", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "_DLIB_PRODUCTS_STDLIB_H_", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@div", + "What": "Function", + "defdec": "Def", + "display": "div_t div(int, int)", + "location": { + "column": "7", + "line": "29", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "div", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product_stdlib.h@647@F@div@q", + "What": "Variable", + "defdec": "Def", + "display": "q", + "location": { + "column": "7", + "line": "32", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "q", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product_stdlib.h@665@F@div@r", + "What": "Variable", + "defdec": "Def", + "display": "r", + "location": { + "column": "7", + "line": "33", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "r", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product_stdlib.h@687@F@div@d", + "What": "Variable", + "defdec": "Def", + "display": "d", + "location": { + "column": "9", + "line": "34", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "d", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@ldiv", + "What": "Function", + "defdec": "Def", + "display": "ldiv_t ldiv(long, long)", + "location": { + "column": "8", + "line": "45", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "ldiv", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product_stdlib.h@1014@F@ldiv@q", + "What": "Variable", + "defdec": "Def", + "display": "q", + "location": { + "column": "7", + "line": "54", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "q", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product_stdlib.h@1032@F@ldiv@r", + "What": "Variable", + "defdec": "Def", + "display": "r", + "location": { + "column": "7", + "line": "55", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "r", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:DLib_Product_stdlib.h@1054@F@ldiv@ld", + "What": "Variable", + "defdec": "Def", + "display": "ld", + "location": { + "column": "10", + "line": "56", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "ld", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@__aeabi_ldivmod", + "What": "Function", + "defdec": "Dec", + "display": "lldiv_t __aeabi_ldivmod(long long, long long)", + "location": { + "column": "13", + "line": "83", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "__aeabi_ldivmod", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:@F@lldiv", + "What": "Function", + "defdec": "Def", + "display": "lldiv_t lldiv(long long, long long)", + "location": { + "column": "13", + "line": "87", + "path": "D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Product_stdlib.h" + }, + "name": "lldiv", + "origin": "system_include", + "scope": null + }, + { + "ID": "c:e22.h@27@macro@__E22_H__", + "What": "MacroDef", + "defdec": "Def", + "display": "__E22_H__", + "location": { + "column": "9", + "line": "2", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "__E22_H__", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:e22.h@115@macro@NORMAL", + "What": "MacroDef", + "defdec": "Def", + "display": "NORMAL", + "location": { + "column": "9", + "line": "11", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "NORMAL", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:e22.h@136@macro@WOR", + "What": "MacroDef", + "defdec": "Def", + "display": "WOR", + "location": { + "column": "9", + "line": "12", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "WOR", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:e22.h@157@macro@CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "CONFIG", + "location": { + "column": "9", + "line": "13", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "CONFIG", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:e22.h@178@macro@SLEEP", + "What": "MacroDef", + "defdec": "Def", + "display": "SLEEP", + "location": { + "column": "9", + "line": "14", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "SLEEP", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@S@_e22_config_pack", + "What": "Struct", + "defdec": "Def", + "display": "_e22_config_pack", + "location": { + "column": "16", + "line": "17", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "members": [ + { + "ID": "c:@S@_e22_config_pack@FI@func", + "What": "FieldDecl", + "defdec": "Def", + "display": "func", + "location": { + "column": "19", + "line": "18", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "func", + "origin": "user_include", + "scope": "_e22_config_pack" + }, + { + "ID": "c:@S@_e22_config_pack@FI@addr_h", + "What": "FieldDecl", + "defdec": "Def", + "display": "addr_h", + "location": { + "column": "16", + "line": "21", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "addr_h", + "origin": "user_include", + "scope": "_e22_config_pack" + }, + { + "ID": "c:@S@_e22_config_pack@FI@addr_l", + "What": "FieldDecl", + "defdec": "Def", + "display": "addr_l", + "location": { + "column": "16", + "line": "22", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "addr_l", + "origin": "user_include", + "scope": "_e22_config_pack" + }, + { + "ID": "c:@S@_e22_config_pack@FI@net_addr", + "What": "FieldDecl", + "defdec": "Def", + "display": "net_addr", + "location": { + "column": "16", + "line": "23", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "net_addr", + "origin": "user_include", + "scope": "_e22_config_pack" + }, + { + "ID": "c:@S@_e22_config_pack@FI@baudRate", + "What": "FieldDecl", + "defdec": "Def", + "display": "baudRate", + "location": { + "column": "16", + "line": "24", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "baudRate", + "origin": "user_include", + "scope": "_e22_config_pack" + }, + { + "ID": "c:@S@_e22_config_pack@FI@packetFragments", + "What": "FieldDecl", + "defdec": "Def", + "display": "packetFragments", + "location": { + "column": "16", + "line": "25", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "packetFragments", + "origin": "user_include", + "scope": "_e22_config_pack" + }, + { + "ID": "c:@S@_e22_config_pack@FI@channel", + "What": "FieldDecl", + "defdec": "Def", + "display": "channel", + "location": { + "column": "16", + "line": "26", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "channel", + "origin": "user_include", + "scope": "_e22_config_pack" + }, + { + "ID": "c:@S@_e22_config_pack@FI@transmissionMode", + "What": "FieldDecl", + "defdec": "Def", + "display": "transmissionMode", + "location": { + "column": "16", + "line": "27", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "transmissionMode", + "origin": "user_include", + "scope": "_e22_config_pack" + }, + { + "ID": "c:e22.h@T@e22_config_pack", + "What": "TypedefDecl", + "defdec": "Def", + "display": "struct _e22_config_pack", + "location": { + "column": "2", + "line": "28", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "e22_config_pack", + "origin": "user_include", + "scope": "_e22_config_pack" + } + ], + "name": "_e22_config_pack", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:e22.h@T@e22_mode", + "What": "Typedef", + "defdec": "Def", + "display": "int", + "location": { + "column": "13", + "line": "31", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "e22_mode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@huart3", + "What": "Variable", + "defdec": "Dec", + "display": "huart3", + "location": { + "column": "27", + "line": "33", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "huart3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@Serial_SendArray_3", + "What": "Function", + "defdec": "Dec", + "display": "void Serial_SendArray_3(uint8_t *, uint16_t)", + "location": { + "column": "13", + "line": "35", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "Serial_SendArray_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@e22_config", + "What": "Function", + "defdec": "Dec", + "display": "void e22_config(void)", + "location": { + "column": "6", + "line": "37", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "e22_config", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@lora_set_mode", + "What": "Function", + "defdec": "Dec", + "display": "void lora_set_mode(e22_mode)", + "location": { + "column": "6", + "line": "38", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "lora_set_mode", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@e22_config_get", + "What": "Function", + "defdec": "Dec", + "display": "void e22_config_get(void)", + "location": { + "column": "6", + "line": "39", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "e22_config_get", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@set_addr", + "What": "Function", + "defdec": "Dec", + "display": "void set_addr(uint8_t)", + "location": { + "column": "6", + "line": "40", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "set_addr", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@F@set_net_id", + "What": "Function", + "defdec": "Dec", + "display": "void set_net_id(uint8_t)", + "location": { + "column": "6", + "line": "41", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "set_net_id", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@MB_register", + "What": "Variable", + "defdec": "Dec", + "display": "MB_register", + "location": { + "column": "17", + "line": "43", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "MB_register", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@Transfer_Data_3", + "What": "Variable", + "defdec": "Dec", + "display": "Transfer_Data_3", + "location": { + "column": "16", + "line": "44", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "Transfer_Data_3", + "origin": "user_include", + "scope": null + }, + { + "ID": "c:@Receive_Data_3", + "What": "Variable", + "defdec": "Dec", + "display": "Receive_Data_3", + "location": { + "column": "16", + "line": "45", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\e22\\e22.h" + }, + "name": "Receive_Data_3", + "origin": "user_include", + "scope": null + }, { "ID": "c:stm32l4xx_hal_adc.c@14032@macro@ADC_CFGR_FIELDS_1", "What": "MacroDef", @@ -336117,272 +336665,6 @@ "origin": "project_file", "scope": null }, - { - "ID": "c:@F@HAL_NVIC_SetPriorityGrouping", - "What": "Function", - "defdec": "Def", - "display": "void HAL_NVIC_SetPriorityGrouping(uint32_t)", - "location": { - "column": "6", - "line": "163", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_SetPriorityGrouping", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SetPriority", - "What": "Function", - "defdec": "Def", - "display": "void HAL_NVIC_SetPriority(IRQn_Type, uint32_t, uint32_t)", - "location": { - "column": "6", - "line": "185", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_SetPriority", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_cortex.c@9799@F@HAL_NVIC_SetPriority@prioritygroup", - "What": "Variable", - "defdec": "Def", - "display": "prioritygroup", - "location": { - "column": "12", - "line": "187", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "prioritygroup", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_EnableIRQ", - "What": "Function", - "defdec": "Def", - "display": "void HAL_NVIC_EnableIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "207", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_EnableIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_DisableIRQ", - "What": "Function", - "defdec": "Def", - "display": "void HAL_NVIC_DisableIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "223", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_DisableIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SystemReset", - "What": "Function", - "defdec": "Def", - "display": "void HAL_NVIC_SystemReset(void)", - "location": { - "column": "6", - "line": "236", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_SystemReset", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_Config", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_SYSTICK_Config(uint32_t)", - "location": { - "column": "10", - "line": "249", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_SYSTICK_Config", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPriorityGrouping", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_NVIC_GetPriorityGrouping(void)", - "location": { - "column": "10", - "line": "277", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_GetPriorityGrouping", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPriority", - "What": "Function", - "defdec": "Def", - "display": "void HAL_NVIC_GetPriority(IRQn_Type, uint32_t, uint32_t *, uint32_t *)", - "location": { - "column": "6", - "line": "304", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_GetPriority", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_SetPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "void HAL_NVIC_SetPendingIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "319", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_SetPendingIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type)", - "location": { - "column": "10", - "line": "337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_GetPendingIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_ClearPendingIRQ", - "What": "Function", - "defdec": "Def", - "display": "void HAL_NVIC_ClearPendingIRQ(IRQn_Type)", - "location": { - "column": "6", - "line": "353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_ClearPendingIRQ", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_NVIC_GetActive", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_NVIC_GetActive(IRQn_Type)", - "location": { - "column": "10", - "line": "370", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_NVIC_GetActive", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_CLKSourceConfig", - "What": "Function", - "defdec": "Def", - "display": "void HAL_SYSTICK_CLKSourceConfig(uint32_t)", - "location": { - "column": "6", - "line": "384", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_SYSTICK_CLKSourceConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_IRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void HAL_SYSTICK_IRQHandler(void)", - "location": { - "column": "6", - "line": "402", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_SYSTICK_IRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_SYSTICK_Callback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_SYSTICK_Callback(void)", - "location": { - "column": "13", - "line": "411", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_SYSTICK_Callback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_Enable", - "What": "Function", - "defdec": "Def", - "display": "void HAL_MPU_Enable(uint32_t)", - "location": { - "column": "6", - "line": "430", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_MPU_Enable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_Disable", - "What": "Function", - "defdec": "Def", - "display": "void HAL_MPU_Disable(void)", - "location": { - "column": "6", - "line": "445", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_MPU_Disable", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_MPU_ConfigRegion", - "What": "Function", - "defdec": "Def", - "display": "void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *)", - "location": { - "column": "6", - "line": "461", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" - }, - "name": "HAL_MPU_ConfigRegion", - "origin": "project_file", - "scope": null - }, { "ID": "c:stm32l4xx_hal_adc_ex.c@1789@macro@ADC_JSQR_FIELDS", "What": "MacroDef", @@ -337573,6 +337855,272 @@ "origin": "project_file", "scope": null }, + { + "ID": "c:@F@HAL_NVIC_SetPriorityGrouping", + "What": "Function", + "defdec": "Def", + "display": "void HAL_NVIC_SetPriorityGrouping(uint32_t)", + "location": { + "column": "6", + "line": "163", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_SetPriorityGrouping", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SetPriority", + "What": "Function", + "defdec": "Def", + "display": "void HAL_NVIC_SetPriority(IRQn_Type, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "185", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_SetPriority", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_cortex.c@9799@F@HAL_NVIC_SetPriority@prioritygroup", + "What": "Variable", + "defdec": "Def", + "display": "prioritygroup", + "location": { + "column": "12", + "line": "187", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "prioritygroup", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_EnableIRQ", + "What": "Function", + "defdec": "Def", + "display": "void HAL_NVIC_EnableIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "207", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_EnableIRQ", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_DisableIRQ", + "What": "Function", + "defdec": "Def", + "display": "void HAL_NVIC_DisableIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "223", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_DisableIRQ", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SystemReset", + "What": "Function", + "defdec": "Def", + "display": "void HAL_NVIC_SystemReset(void)", + "location": { + "column": "6", + "line": "236", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_SystemReset", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_Config", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_SYSTICK_Config(uint32_t)", + "location": { + "column": "10", + "line": "249", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_SYSTICK_Config", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPriorityGrouping", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_NVIC_GetPriorityGrouping(void)", + "location": { + "column": "10", + "line": "277", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_GetPriorityGrouping", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPriority", + "What": "Function", + "defdec": "Def", + "display": "void HAL_NVIC_GetPriority(IRQn_Type, uint32_t, uint32_t *, uint32_t *)", + "location": { + "column": "6", + "line": "304", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_GetPriority", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_SetPendingIRQ", + "What": "Function", + "defdec": "Def", + "display": "void HAL_NVIC_SetPendingIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "319", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_SetPendingIRQ", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetPendingIRQ", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type)", + "location": { + "column": "10", + "line": "337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_GetPendingIRQ", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_ClearPendingIRQ", + "What": "Function", + "defdec": "Def", + "display": "void HAL_NVIC_ClearPendingIRQ(IRQn_Type)", + "location": { + "column": "6", + "line": "353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_ClearPendingIRQ", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_NVIC_GetActive", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_NVIC_GetActive(IRQn_Type)", + "location": { + "column": "10", + "line": "370", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_NVIC_GetActive", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_CLKSourceConfig", + "What": "Function", + "defdec": "Def", + "display": "void HAL_SYSTICK_CLKSourceConfig(uint32_t)", + "location": { + "column": "6", + "line": "384", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_SYSTICK_CLKSourceConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_IRQHandler", + "What": "Function", + "defdec": "Def", + "display": "void HAL_SYSTICK_IRQHandler(void)", + "location": { + "column": "6", + "line": "402", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_SYSTICK_IRQHandler", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_SYSTICK_Callback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_SYSTICK_Callback(void)", + "location": { + "column": "13", + "line": "411", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_SYSTICK_Callback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_Enable", + "What": "Function", + "defdec": "Def", + "display": "void HAL_MPU_Enable(uint32_t)", + "location": { + "column": "6", + "line": "430", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_MPU_Enable", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_Disable", + "What": "Function", + "defdec": "Def", + "display": "void HAL_MPU_Disable(void)", + "location": { + "column": "6", + "line": "445", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_MPU_Disable", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_MPU_ConfigRegion", + "What": "Function", + "defdec": "Def", + "display": "void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *)", + "location": { + "column": "6", + "line": "461", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_cortex.c" + }, + "name": "HAL_MPU_ConfigRegion", + "origin": "project_file", + "scope": null + }, { "ID": "c:stm32l4xx_hal_dac.c@16890@macro@TIMEOUT_DAC_CALIBCONFIG", "What": "MacroDef", @@ -338021,6 +338569,356 @@ "origin": "project_file", "scope": null }, + { + "ID": "c:stm32l4xx_hal_dma.c@F@DMA_SetConfig", + "What": "Function", + "defdec": "Dec", + "display": "void DMA_SetConfig(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "13", + "line": "112", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "DMA_SetConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Init", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "154", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_Init", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@6909@F@HAL_DMA_Init@tmp", + "What": "Variable", + "defdec": "Def", + "display": "tmp", + "location": { + "column": "12", + "line": "156", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "tmp", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_DeInit", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_DeInit(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "295", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_DeInit", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Start", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_Start(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "431", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_Start", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@16260@F@HAL_DMA_Start@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "433", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Start_IT", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "474", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_Start_IT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@17581@F@HAL_DMA_Start_IT@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "476", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Abort", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "547", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_Abort", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@19572@F@HAL_DMA_Abort@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "549", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_Abort_IT", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *)", + "location": { + "column": "19", + "line": "609", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_Abort_IT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@21288@F@HAL_DMA_Abort_IT@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "611", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_PollForTransfer", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *, HAL_DMA_LevelCompleteTypeDef, uint32_t)", + "location": { + "column": "19", + "line": "676", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_PollForTransfer", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@23305@F@HAL_DMA_PollForTransfer@temp", + "What": "Variable", + "defdec": "Def", + "display": "temp", + "location": { + "column": "12", + "line": "678", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "temp", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@23323@F@HAL_DMA_PollForTransfer@tickstart", + "What": "Variable", + "defdec": "Def", + "display": "tickstart", + "location": { + "column": "12", + "line": "679", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "tickstart", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_IRQHandler", + "What": "Function", + "defdec": "Def", + "display": "void HAL_DMA_IRQHandler(DMA_HandleTypeDef *)", + "location": { + "column": "6", + "line": "806", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_IRQHandler", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@26982@F@HAL_DMA_IRQHandler@flag_it", + "What": "Variable", + "defdec": "Def", + "display": "flag_it", + "location": { + "column": "12", + "line": "808", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "flag_it", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@27031@F@HAL_DMA_IRQHandler@source_it", + "What": "Variable", + "defdec": "Def", + "display": "source_it", + "location": { + "column": "12", + "line": "809", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "source_it", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_RegisterCallback", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_RegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef, void (*)(DMA_HandleTypeDef *))", + "location": { + "column": "19", + "line": "902", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_RegisterCallback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@30481@F@HAL_DMA_RegisterCallback@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "904", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_UnRegisterCallback", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_DMA_UnRegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef)", + "location": { + "column": "19", + "line": "953", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_UnRegisterCallback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@31783@F@HAL_DMA_UnRegisterCallback@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "955", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_GetState", + "What": "Function", + "defdec": "Def", + "display": "HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *)", + "location": { + "column": "22", + "line": "1031", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_GetState", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_DMA_GetError", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *)", + "location": { + "column": "10", + "line": "1043", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "HAL_DMA_GetError", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_dma.c@F@DMA_SetConfig", + "What": "Function", + "defdec": "Def", + "display": "void DMA_SetConfig(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", + "location": { + "column": "13", + "line": "1069", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" + }, + "name": "DMA_SetConfig", + "origin": "project_file", + "scope": null + }, { "ID": "c:stm32l4xx_hal_exti.c@4331@macro@EXTI_MODE_OFFSET", "What": "MacroDef", @@ -338609,790 +339507,6 @@ "origin": "project_file", "scope": null }, - { - "ID": "c:stm32l4xx_hal_dma.c@F@DMA_SetConfig", - "What": "Function", - "defdec": "Dec", - "display": "void DMA_SetConfig(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "13", - "line": "112", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "DMA_SetConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Init", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "154", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_Init", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@6909@F@HAL_DMA_Init@tmp", - "What": "Variable", - "defdec": "Def", - "display": "tmp", - "location": { - "column": "12", - "line": "156", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "tmp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_DeInit", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_DeInit(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "295", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_DeInit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Start", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_Start(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "431", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_Start", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@16260@F@HAL_DMA_Start@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "433", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Start_IT", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "474", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_Start_IT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@17581@F@HAL_DMA_Start_IT@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "476", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Abort", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "547", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_Abort", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@19572@F@HAL_DMA_Abort@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "549", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_Abort_IT", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *)", - "location": { - "column": "19", - "line": "609", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_Abort_IT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@21288@F@HAL_DMA_Abort_IT@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "611", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_PollForTransfer", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *, HAL_DMA_LevelCompleteTypeDef, uint32_t)", - "location": { - "column": "19", - "line": "676", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_PollForTransfer", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@23305@F@HAL_DMA_PollForTransfer@temp", - "What": "Variable", - "defdec": "Def", - "display": "temp", - "location": { - "column": "12", - "line": "678", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "temp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@23323@F@HAL_DMA_PollForTransfer@tickstart", - "What": "Variable", - "defdec": "Def", - "display": "tickstart", - "location": { - "column": "12", - "line": "679", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "tickstart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_IRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void HAL_DMA_IRQHandler(DMA_HandleTypeDef *)", - "location": { - "column": "6", - "line": "806", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_IRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@26982@F@HAL_DMA_IRQHandler@flag_it", - "What": "Variable", - "defdec": "Def", - "display": "flag_it", - "location": { - "column": "12", - "line": "808", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "flag_it", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@27031@F@HAL_DMA_IRQHandler@source_it", - "What": "Variable", - "defdec": "Def", - "display": "source_it", - "location": { - "column": "12", - "line": "809", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "source_it", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_RegisterCallback", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_RegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef, void (*)(DMA_HandleTypeDef *))", - "location": { - "column": "19", - "line": "902", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_RegisterCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@30481@F@HAL_DMA_RegisterCallback@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "904", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_UnRegisterCallback", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_DMA_UnRegisterCallback(DMA_HandleTypeDef *, HAL_DMA_CallbackIDTypeDef)", - "location": { - "column": "19", - "line": "953", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_UnRegisterCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@31783@F@HAL_DMA_UnRegisterCallback@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "955", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_GetState", - "What": "Function", - "defdec": "Def", - "display": "HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *)", - "location": { - "column": "22", - "line": "1031", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_GetState", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_DMA_GetError", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *)", - "location": { - "column": "10", - "line": "1043", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "HAL_DMA_GetError", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_dma.c@F@DMA_SetConfig", - "What": "Function", - "defdec": "Def", - "display": "void DMA_SetConfig(DMA_HandleTypeDef *, uint32_t, uint32_t, uint32_t)", - "location": { - "column": "13", - "line": "1069", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_dma.c" - }, - "name": "DMA_SetConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@4691@macro@FLASH_NB_DOUBLE_WORDS_IN_ROW", - "What": "MacroDef", - "defdec": "Def", - "display": "FLASH_NB_DOUBLE_WORDS_IN_ROW", - "location": { - "column": "9", - "line": "106", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "FLASH_NB_DOUBLE_WORDS_IN_ROW", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@pFlash", - "What": "Variable", - "defdec": "Def", - "display": "pFlash", - "location": { - "column": "22", - "line": "116", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "pFlash", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@F@FLASH_Program_DoubleWord", - "What": "Function", - "defdec": "Dec", - "display": "void FLASH_Program_DoubleWord(uint32_t, uint64_t)", - "location": { - "column": "22", - "line": "132", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "FLASH_Program_DoubleWord", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@F@FLASH_Program_Fast", - "What": "Function", - "defdec": "Dec", - "display": "void FLASH_Program_Fast(uint32_t, uint32_t)", - "location": { - "column": "22", - "line": "133", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "FLASH_Program_Fast", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Program", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_FLASH_Program(uint32_t, uint32_t, uint64_t)", - "location": { - "column": "19", - "line": "169", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_Program", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@7252@F@HAL_FLASH_Program@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "171", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@7281@F@HAL_FLASH_Program@prog_bit", - "What": "Variable", - "defdec": "Def", - "display": "prog_bit", - "location": { - "column": "12", - "line": "172", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "prog_bit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Program_IT", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t, uint32_t, uint64_t)", - "location": { - "column": "19", - "line": "251", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_Program_IT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@9872@F@HAL_FLASH_Program_IT@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "253", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_IRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void HAL_FLASH_IRQHandler(void)", - "location": { - "column": "6", - "line": "311", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_IRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@11416@F@HAL_FLASH_IRQHandler@tmp_page", - "What": "Variable", - "defdec": "Def", - "display": "tmp_page", - "location": { - "column": "12", - "line": "313", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "tmp_page", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@11438@F@HAL_FLASH_IRQHandler@error", - "What": "Variable", - "defdec": "Def", - "display": "error", - "location": { - "column": "12", - "line": "314", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "error", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@11457@F@HAL_FLASH_IRQHandler@procedure", - "What": "Variable", - "defdec": "Def", - "display": "procedure", - "location": { - "column": "26", - "line": "315", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "procedure", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_EndOfOperationCallback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_FLASH_EndOfOperationCallback(uint32_t)", - "location": { - "column": "13", - "line": "454", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_EndOfOperationCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OperationErrorCallback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_FLASH_OperationErrorCallback(uint32_t)", - "location": { - "column": "13", - "line": "472", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_OperationErrorCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Unlock", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_FLASH_Unlock(void)", - "location": { - "column": "19", - "line": "505", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_Unlock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@17734@F@HAL_FLASH_Unlock@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "507", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_Lock", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_FLASH_Lock(void)", - "location": { - "column": "19", - "line": "529", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_Lock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Unlock", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void)", - "location": { - "column": "19", - "line": "541", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_OB_Unlock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Lock", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Lock(void)", - "location": { - "column": "19", - "line": "561", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_OB_Lock", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_OB_Launch", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_FLASH_OB_Launch(void)", - "location": { - "column": "19", - "line": "573", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_OB_Launch", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_FLASH_GetError", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_FLASH_GetError(void)", - "location": { - "column": "10", - "line": "622", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "HAL_FLASH_GetError", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@FLASH_WaitForLastOperation", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t)", - "location": { - "column": "19", - "line": "646", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "FLASH_WaitForLastOperation", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@22082@F@FLASH_WaitForLastOperation@tickstart", - "What": "Variable", - "defdec": "Def", - "display": "tickstart", - "location": { - "column": "12", - "line": "652", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "tickstart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@22121@F@FLASH_WaitForLastOperation@error", - "What": "Variable", - "defdec": "Def", - "display": "error", - "location": { - "column": "12", - "line": "653", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "error", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@F@FLASH_Program_DoubleWord", - "What": "Function", - "defdec": "Def", - "display": "void FLASH_Program_DoubleWord(uint32_t, uint64_t)", - "location": { - "column": "13", - "line": "696", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "FLASH_Program_DoubleWord", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@F@FLASH_Program_Fast", - "What": "Function", - "defdec": "Def", - "display": "void FLASH_Program_Fast(uint32_t, uint32_t)", - "location": { - "column": "13", - "line": "721", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "FLASH_Program_Fast", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@23911@F@FLASH_Program_Fast@primask_bit", - "What": "Variable", - "defdec": "Def", - "display": "primask_bit", - "location": { - "column": "12", - "line": "723", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "primask_bit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@23936@F@FLASH_Program_Fast@row_index", - "What": "Variable", - "defdec": "Def", - "display": "row_index", - "location": { - "column": "11", - "line": "724", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "row_index", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@23993@F@FLASH_Program_Fast@dest_addr", - "What": "Variable", - "defdec": "Def", - "display": "dest_addr", - "location": { - "column": "18", - "line": "725", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "dest_addr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_flash.c@24048@F@FLASH_Program_Fast@src_addr", - "What": "Variable", - "defdec": "Def", - "display": "src_addr", - "location": { - "column": "18", - "line": "726", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" - }, - "name": "src_addr", - "origin": "project_file", - "scope": null - }, { "ID": "c:stm32l4xx_hal_gpio.c@6043@macro@GPIO_NUMBER", "What": "MacroDef", @@ -342767,6 +342881,440 @@ "origin": "project_file", "scope": null }, + { + "ID": "c:stm32l4xx_hal_flash.c@4691@macro@FLASH_NB_DOUBLE_WORDS_IN_ROW", + "What": "MacroDef", + "defdec": "Def", + "display": "FLASH_NB_DOUBLE_WORDS_IN_ROW", + "location": { + "column": "9", + "line": "106", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "FLASH_NB_DOUBLE_WORDS_IN_ROW", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@pFlash", + "What": "Variable", + "defdec": "Def", + "display": "pFlash", + "location": { + "column": "22", + "line": "116", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "pFlash", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@F@FLASH_Program_DoubleWord", + "What": "Function", + "defdec": "Dec", + "display": "void FLASH_Program_DoubleWord(uint32_t, uint64_t)", + "location": { + "column": "22", + "line": "132", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "FLASH_Program_DoubleWord", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@F@FLASH_Program_Fast", + "What": "Function", + "defdec": "Dec", + "display": "void FLASH_Program_Fast(uint32_t, uint32_t)", + "location": { + "column": "22", + "line": "133", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "FLASH_Program_Fast", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Program", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_FLASH_Program(uint32_t, uint32_t, uint64_t)", + "location": { + "column": "19", + "line": "169", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_Program", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@7252@F@HAL_FLASH_Program@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "171", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@7281@F@HAL_FLASH_Program@prog_bit", + "What": "Variable", + "defdec": "Def", + "display": "prog_bit", + "location": { + "column": "12", + "line": "172", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "prog_bit", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Program_IT", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_FLASH_Program_IT(uint32_t, uint32_t, uint64_t)", + "location": { + "column": "19", + "line": "251", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_Program_IT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@9872@F@HAL_FLASH_Program_IT@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "253", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_IRQHandler", + "What": "Function", + "defdec": "Def", + "display": "void HAL_FLASH_IRQHandler(void)", + "location": { + "column": "6", + "line": "311", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_IRQHandler", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@11416@F@HAL_FLASH_IRQHandler@tmp_page", + "What": "Variable", + "defdec": "Def", + "display": "tmp_page", + "location": { + "column": "12", + "line": "313", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "tmp_page", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@11438@F@HAL_FLASH_IRQHandler@error", + "What": "Variable", + "defdec": "Def", + "display": "error", + "location": { + "column": "12", + "line": "314", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "error", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@11457@F@HAL_FLASH_IRQHandler@procedure", + "What": "Variable", + "defdec": "Def", + "display": "procedure", + "location": { + "column": "26", + "line": "315", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "procedure", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_EndOfOperationCallback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_FLASH_EndOfOperationCallback(uint32_t)", + "location": { + "column": "13", + "line": "454", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_EndOfOperationCallback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OperationErrorCallback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_FLASH_OperationErrorCallback(uint32_t)", + "location": { + "column": "13", + "line": "472", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_OperationErrorCallback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Unlock", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_FLASH_Unlock(void)", + "location": { + "column": "19", + "line": "505", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_Unlock", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@17734@F@HAL_FLASH_Unlock@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "507", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_Lock", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_FLASH_Lock(void)", + "location": { + "column": "19", + "line": "529", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_Lock", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Unlock", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Unlock(void)", + "location": { + "column": "19", + "line": "541", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_OB_Unlock", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Lock", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Lock(void)", + "location": { + "column": "19", + "line": "561", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_OB_Lock", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_OB_Launch", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_FLASH_OB_Launch(void)", + "location": { + "column": "19", + "line": "573", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_OB_Launch", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_FLASH_GetError", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_FLASH_GetError(void)", + "location": { + "column": "10", + "line": "622", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "HAL_FLASH_GetError", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@FLASH_WaitForLastOperation", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef FLASH_WaitForLastOperation(uint32_t)", + "location": { + "column": "19", + "line": "646", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "FLASH_WaitForLastOperation", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@22082@F@FLASH_WaitForLastOperation@tickstart", + "What": "Variable", + "defdec": "Def", + "display": "tickstart", + "location": { + "column": "12", + "line": "652", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "tickstart", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@22121@F@FLASH_WaitForLastOperation@error", + "What": "Variable", + "defdec": "Def", + "display": "error", + "location": { + "column": "12", + "line": "653", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "error", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@F@FLASH_Program_DoubleWord", + "What": "Function", + "defdec": "Def", + "display": "void FLASH_Program_DoubleWord(uint32_t, uint64_t)", + "location": { + "column": "13", + "line": "696", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "FLASH_Program_DoubleWord", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@F@FLASH_Program_Fast", + "What": "Function", + "defdec": "Def", + "display": "void FLASH_Program_Fast(uint32_t, uint32_t)", + "location": { + "column": "13", + "line": "721", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "FLASH_Program_Fast", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@23911@F@FLASH_Program_Fast@primask_bit", + "What": "Variable", + "defdec": "Def", + "display": "primask_bit", + "location": { + "column": "12", + "line": "723", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "primask_bit", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@23936@F@FLASH_Program_Fast@row_index", + "What": "Variable", + "defdec": "Def", + "display": "row_index", + "location": { + "column": "11", + "line": "724", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "row_index", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@23993@F@FLASH_Program_Fast@dest_addr", + "What": "Variable", + "defdec": "Def", + "display": "dest_addr", + "location": { + "column": "18", + "line": "725", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "dest_addr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_flash.c@24048@F@FLASH_Program_Fast@src_addr", + "What": "Variable", + "defdec": "Def", + "display": "src_addr", + "location": { + "column": "18", + "line": "726", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_flash.c" + }, + "name": "src_addr", + "origin": "project_file", + "scope": null + }, { "ID": "c:stm32l4xx_hal_flash_ex.c@F@FLASH_MassErase", "What": "Function", @@ -343369,286 +343917,6 @@ "origin": "project_file", "scope": null }, - { - "ID": "c:stm32l4xx_hal_pwr.c@1515@macro@PVD_MODE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "PVD_MODE_IT", - "location": { - "column": "9", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "PVD_MODE_IT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr.c@1638@macro@PVD_MODE_EVT", - "What": "MacroDef", - "defdec": "Def", - "display": "PVD_MODE_EVT", - "location": { - "column": "9", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "PVD_MODE_EVT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr.c@1761@macro@PVD_RISING_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "PVD_RISING_EDGE", - "location": { - "column": "9", - "line": "50", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "PVD_RISING_EDGE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr.c@1884@macro@PVD_FALLING_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "PVD_FALLING_EDGE", - "location": { - "column": "9", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "PVD_FALLING_EDGE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_DeInit", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_DeInit(void)", - "location": { - "column": "6", - "line": "86", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_DeInit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_EnableBkUpAccess", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_EnableBkUpAccess(void)", - "location": { - "column": "6", - "line": "104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_EnableBkUpAccess", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_DisableBkUpAccess", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_DisableBkUpAccess(void)", - "location": { - "column": "6", - "line": "114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_DisableBkUpAccess", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_ConfigPVD", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWR_ConfigPVD(PWR_PVDTypeDef *)", - "location": { - "column": "19", - "line": "311", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_ConfigPVD", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_EnablePVD", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_EnablePVD(void)", - "location": { - "column": "6", - "line": "357", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_EnablePVD", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_DisablePVD", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_DisablePVD(void)", - "location": { - "column": "6", - "line": "366", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_DisablePVD", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_EnableWakeUpPin", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_EnableWakeUpPin(uint32_t)", - "location": { - "column": "6", - "line": "391", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_EnableWakeUpPin", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_DisableWakeUpPin", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_DisableWakeUpPin(uint32_t)", - "location": { - "column": "6", - "line": "412", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_DisableWakeUpPin", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_EnterSLEEPMode", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_EnterSLEEPMode(uint32_t, uint8_t)", - "location": { - "column": "6", - "line": "444", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_EnterSLEEPMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_EnterSTOPMode", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_EnterSTOPMode(uint32_t, uint8_t)", - "location": { - "column": "6", - "line": "523", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_EnterSTOPMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_EnterSTANDBYMode", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_EnterSTANDBYMode(void)", - "location": { - "column": "6", - "line": "556", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_EnterSTANDBYMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_EnableSleepOnExit", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_EnableSleepOnExit(void)", - "location": { - "column": "6", - "line": "582", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_EnableSleepOnExit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_DisableSleepOnExit", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_DisableSleepOnExit(void)", - "location": { - "column": "6", - "line": "595", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_DisableSleepOnExit", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_EnableSEVOnPend", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_EnableSEVOnPend(void)", - "location": { - "column": "6", - "line": "609", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_EnableSEVOnPend", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_DisableSEVOnPend", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_DisableSEVOnPend(void)", - "location": { - "column": "6", - "line": "622", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_DisableSEVOnPend", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWR_PVDCallback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWR_PVDCallback(void)", - "location": { - "column": "13", - "line": "636", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" - }, - "name": "HAL_PWR_PVDCallback", - "origin": "project_file", - "scope": null - }, { "ID": "c:@F@HAL_I2CEx_ConfigAnalogFilter", "What": "Function", @@ -343776,1290 +344044,1038 @@ "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@2910@macro@HSE_TIMEOUT_VALUE", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1523@macro@PLLSAI1_TIMEOUT_VALUE", "What": "MacroDef", "defdec": "Def", - "display": "HSE_TIMEOUT_VALUE", + "display": "PLLSAI1_TIMEOUT_VALUE", "location": { "column": "9", - "line": "69", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "43", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HSE_TIMEOUT_VALUE", + "name": "PLLSAI1_TIMEOUT_VALUE", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@2966@macro@HSI_TIMEOUT_VALUE", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1594@macro@PLLSAI2_TIMEOUT_VALUE", "What": "MacroDef", "defdec": "Def", - "display": "HSI_TIMEOUT_VALUE", + "display": "PLLSAI2_TIMEOUT_VALUE", "location": { "column": "9", - "line": "70", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "44", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HSI_TIMEOUT_VALUE", + "name": "PLLSAI2_TIMEOUT_VALUE", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@3038@macro@MSI_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "MSI_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "71", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "MSI_TIMEOUT_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@3229@macro@LSI_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "LSI_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "75", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "LSI_TIMEOUT_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@3333@macro@HSI48_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "HSI48_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "77", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "HSI48_TIMEOUT_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@3405@macro@PLL_TIMEOUT_VALUE", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1665@macro@PLL_TIMEOUT_VALUE", "What": "MacroDef", "defdec": "Def", "display": "PLL_TIMEOUT_VALUE", "location": { "column": "9", - "line": "78", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "45", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, "name": "PLL_TIMEOUT_VALUE", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@3477@macro@CLOCKSWITCH_TIMEOUT_VALUE", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1738@macro@DIVIDER_P_UPDATE", "What": "MacroDef", "defdec": "Def", - "display": "CLOCKSWITCH_TIMEOUT_VALUE", + "display": "DIVIDER_P_UPDATE", "location": { "column": "9", - "line": "79", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "47", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "CLOCKSWITCH_TIMEOUT_VALUE", + "name": "DIVIDER_P_UPDATE", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@3702@macro@__MCO1_CLK_ENABLE", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1776@macro@DIVIDER_Q_UPDATE", "What": "MacroDef", "defdec": "Def", - "display": "__MCO1_CLK_ENABLE", + "display": "DIVIDER_Q_UPDATE", "location": { "column": "9", - "line": "88", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "__MCO1_CLK_ENABLE", + "name": "DIVIDER_Q_UPDATE", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@3762@macro@MCO1_GPIO_PORT", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1814@macro@DIVIDER_R_UPDATE", "What": "MacroDef", "defdec": "Def", - "display": "MCO1_GPIO_PORT", + "display": "DIVIDER_R_UPDATE", "location": { "column": "9", - "line": "89", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "MCO1_GPIO_PORT", + "name": "DIVIDER_R_UPDATE", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@3799@macro@MCO1_PIN", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1854@macro@__LSCO_CLK_ENABLE", "What": "MacroDef", "defdec": "Def", - "display": "MCO1_PIN", + "display": "__LSCO_CLK_ENABLE", "location": { "column": "9", - "line": "90", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "MCO1_PIN", + "name": "__LSCO_CLK_ENABLE", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@3843@macro@RCC_PLL_OSCSOURCE_CONFIG", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1918@macro@LSCO_GPIO_PORT", "What": "MacroDef", "defdec": "Def", - "display": "RCC_PLL_OSCSOURCE_CONFIG", + "display": "LSCO_GPIO_PORT", "location": { "column": "9", - "line": "92", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "52", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "RCC_PLL_OSCSOURCE_CONFIG", + "name": "LSCO_GPIO_PORT", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@F@RCC_SetFlashLatencyFromMSIRange", + "ID": "c:stm32l4xx_hal_rcc_ex.c@1959@macro@LSCO_PIN", + "What": "MacroDef", + "defdec": "Def", + "display": "LSCO_PIN", + "location": { + "column": "9", + "line": "53", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "LSCO_PIN", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@F@RCCEx_PLLSAI1_Config", "What": "Function", "defdec": "Dec", - "display": "HAL_StatusTypeDef RCC_SetFlashLatencyFromMSIRange(uint32_t)", + "display": "HAL_StatusTypeDef RCCEx_PLLSAI1_Config(RCC_PLLSAI1InitTypeDef *, uint32_t)", "location": { "column": "26", - "line": "104", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "66", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "RCC_SetFlashLatencyFromMSIRange", + "name": "RCCEx_PLLSAI1_Config", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_DeInit", + "ID": "c:stm32l4xx_hal_rcc_ex.c@F@RCCEx_GetSAIxPeriphCLKFreq", + "What": "Function", + "defdec": "Dec", + "display": "uint32_t RCCEx_GetSAIxPeriphCLKFreq(uint32_t, uint32_t)", + "location": { + "column": "17", + "line": "78", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "RCCEx_GetSAIxPeriphCLKFreq", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_PeriphCLKConfig", "What": "Function", "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_RCC_DeInit(void)", + "display": "HAL_StatusTypeDef HAL_RCCEx_PeriphCLKConfig(RCC_PeriphCLKInitTypeDef *)", "location": { "column": "19", - "line": "265", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "194", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_DeInit", + "name": "HAL_RCCEx_PeriphCLKConfig", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@13817@F@HAL_RCC_DeInit@tickstart", + "ID": "c:stm32l4xx_hal_rcc_ex.c@8674@F@HAL_RCCEx_PeriphCLKConfig@tmpregister", "What": "Variable", "defdec": "Def", - "display": "tickstart", + "display": "tmpregister", "location": { "column": "12", - "line": "267", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "196", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "tmpregister", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@8674@F@HAL_RCCEx_PeriphCLKConfig@tickstart", + "What": "Variable", + "defdec": "Dec", + "display": "tickstart", + "location": { + "column": "25", + "line": "196", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, "name": "tickstart", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_OscConfig", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *)", - "location": { - "column": "19", - "line": "403", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "HAL_RCC_OscConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@17938@F@HAL_RCC_OscConfig@tickstart", + "ID": "c:stm32l4xx_hal_rcc_ex.c@8735@F@HAL_RCCEx_PeriphCLKConfig@ret", "What": "Variable", "defdec": "Def", - "display": "tickstart", + "display": "ret", "location": { - "column": "12", - "line": "405", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "21", + "line": "197", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "tickstart", + "name": "ret", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@17961@F@HAL_RCC_OscConfig@status", + "ID": "c:stm32l4xx_hal_rcc_ex.c@8801@F@HAL_RCCEx_PeriphCLKConfig@status", "What": "Variable", "defdec": "Def", "display": "status", "location": { "column": "21", - "line": "406", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "198", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, "name": "status", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@17990@F@HAL_RCC_OscConfig@sysclk_source", - "What": "Variable", - "defdec": "Def", - "display": "sysclk_source", - "location": { - "column": "12", - "line": "407", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "sysclk_source", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@17990@F@HAL_RCC_OscConfig@pll_config", - "What": "Variable", - "defdec": "Dec", - "display": "pll_config", - "location": { - "column": "27", - "line": "407", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "pll_config", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@29033@F@HAL_RCC_OscConfig@pwrclkchanged", + "ID": "c:stm32l4xx_hal_rcc_ex.c@13885@F@HAL_RCCEx_PeriphCLKConfig@pwrclkchanged", "What": "Variable", "defdec": "Def", "display": "pwrclkchanged", "location": { "column": "22", - "line": "731", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "321", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, "name": "pwrclkchanged", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@29388@F@HAL_RCC_OscConfig@tmpreg", + "ID": "c:stm32l4xx_hal_rcc_ex.c@14152@F@HAL_RCCEx_PeriphCLKConfig@tmpreg", "What": "Variable", "defdec": "Def", "display": "tmpreg", "location": { "column": "7", - "line": "740", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "329", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, "name": "tmpreg", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_ClockConfig", + "ID": "c:@F@HAL_RCCEx_GetPeriphCLKConfig", "What": "Function", "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *, uint32_t)", - "location": { - "column": "19", - "line": "1095", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "HAL_RCC_ClockConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@42369@F@HAL_RCC_ClockConfig@tickstart", - "What": "Variable", - "defdec": "Def", - "display": "tickstart", - "location": { - "column": "12", - "line": "1097", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "tickstart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@42637@F@HAL_RCC_ClockConfig@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "1102", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_MCOConfig", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCC_MCOConfig(uint32_t, uint32_t, uint32_t)", + "display": "void HAL_RCCEx_GetPeriphCLKConfig(RCC_PeriphCLKInitTypeDef *)", "location": { "column": "6", - "line": "1337", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "824", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_MCOConfig", + "name": "HAL_RCCEx_GetPeriphCLKConfig", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@52151@F@HAL_RCC_MCOConfig@GPIO_InitStruct", - "What": "Variable", - "defdec": "Def", - "display": "GPIO_InitStruct", - "location": { - "column": "20", - "line": "1339", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "GPIO_InitStruct", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@52486@F@HAL_RCC_MCOConfig@tmpreg", - "What": "Variable", - "defdec": "Def", - "display": "tmpreg", - "location": { - "column": "3", - "line": "1350", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "tmpreg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCC_GetSysClockFreq", + "ID": "c:@F@HAL_RCCEx_GetPeriphCLKFreq", "What": "Function", "defdec": "Def", - "display": "uint32_t HAL_RCC_GetSysClockFreq(void)", + "display": "uint32_t HAL_RCCEx_GetPeriphCLKFreq(uint32_t)", "location": { "column": "10", - "line": "1396", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "1150", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_GetSysClockFreq", + "name": "HAL_RCCEx_GetPeriphCLKFreq", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@54842@F@HAL_RCC_GetSysClockFreq@msirange", + "ID": "c:stm32l4xx_hal_rcc_ex.c@52390@F@HAL_RCCEx_GetPeriphCLKFreq@frequency", "What": "Variable", "defdec": "Def", - "display": "msirange", + "display": "frequency", "location": { "column": "12", - "line": "1398", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "1152", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "msirange", + "name": "frequency", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@54842@F@HAL_RCC_GetSysClockFreq@sysclockfreq", - "What": "Variable", - "defdec": "Dec", - "display": "sysclockfreq", - "location": { - "column": "27", - "line": "1398", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "sysclockfreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@54888@F@HAL_RCC_GetSysClockFreq@pllvco", + "ID": "c:stm32l4xx_hal_rcc_ex.c@52418@F@HAL_RCCEx_GetPeriphCLKFreq@srcclk", "What": "Variable", "defdec": "Def", - "display": "pllvco", + "display": "srcclk", "location": { "column": "12", - "line": "1399", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "1153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "pllvco", + "name": "srcclk", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@54888@F@HAL_RCC_GetSysClockFreq@pllsource", - "What": "Variable", - "defdec": "Dec", - "display": "pllsource", - "location": { - "column": "20", - "line": "1399", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "pllsource", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@54888@F@HAL_RCC_GetSysClockFreq@pllr", - "What": "Variable", - "defdec": "Dec", - "display": "pllr", - "location": { - "column": "31", - "line": "1399", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "pllr", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@54888@F@HAL_RCC_GetSysClockFreq@pllm", - "What": "Variable", - "defdec": "Dec", - "display": "pllm", - "location": { - "column": "37", - "line": "1399", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "pllm", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@54955@F@HAL_RCC_GetSysClockFreq@sysclk_source", - "What": "Variable", - "defdec": "Def", - "display": "sysclk_source", - "location": { - "column": "12", - "line": "1400", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "sysclk_source", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@54955@F@HAL_RCC_GetSysClockFreq@pll_oscsource", + "ID": "c:stm32l4xx_hal_rcc_ex.c@52418@F@HAL_RCCEx_GetPeriphCLKFreq@pll_oscsource", "What": "Variable", "defdec": "Dec", "display": "pll_oscsource", "location": { - "column": "27", - "line": "1400", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "20", + "line": "1153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, "name": "pll_oscsource", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_GetHCLKFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_RCC_GetHCLKFreq(void)", + "ID": "c:stm32l4xx_hal_rcc_ex.c@52418@F@HAL_RCCEx_GetPeriphCLKFreq@pllvco", + "What": "Variable", + "defdec": "Dec", + "display": "pllvco", "location": { - "column": "10", - "line": "1484", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "35", + "line": "1153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_GetHCLKFreq", + "name": "pllvco", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_GetPCLK1Freq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_RCC_GetPCLK1Freq(void)", + "ID": "c:stm32l4xx_hal_rcc_ex.c@52418@F@HAL_RCCEx_GetPeriphCLKFreq@plln", + "What": "Variable", + "defdec": "Dec", + "display": "plln", "location": { - "column": "10", - "line": "1495", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "43", + "line": "1153", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_GetPCLK1Freq", + "name": "plln", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_GetPCLK2Freq", + "ID": "c:@F@HAL_RCCEx_EnablePLLSAI1", "What": "Function", "defdec": "Def", - "display": "uint32_t HAL_RCC_GetPCLK2Freq(void)", + "display": "HAL_StatusTypeDef HAL_RCCEx_EnablePLLSAI1(RCC_PLLSAI1InitTypeDef *)", "location": { - "column": "10", - "line": "1507", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "19", + "line": "2054", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_GetPCLK2Freq", + "name": "HAL_RCCEx_EnablePLLSAI1", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_GetOscConfig", + "ID": "c:stm32l4xx_hal_rcc_ex.c@79295@F@HAL_RCCEx_EnablePLLSAI1@tickstart", + "What": "Variable", + "defdec": "Def", + "display": "tickstart", + "location": { + "column": "12", + "line": "2056", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "tickstart", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@79318@F@HAL_RCCEx_EnablePLLSAI1@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "2057", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_DisablePLLSAI1", "What": "Function", "defdec": "Def", - "display": "void HAL_RCC_GetOscConfig(RCC_OscInitTypeDef *)", + "display": "HAL_StatusTypeDef HAL_RCCEx_DisablePLLSAI1(void)", + "location": { + "column": "19", + "line": "2122", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_DisablePLLSAI1", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@81522@F@HAL_RCCEx_DisablePLLSAI1@tickstart", + "What": "Variable", + "defdec": "Def", + "display": "tickstart", + "location": { + "column": "12", + "line": "2124", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "tickstart", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@81545@F@HAL_RCCEx_DisablePLLSAI1@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "2125", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_WakeUpStopCLKConfig", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_WakeUpStopCLKConfig(uint32_t)", "location": { "column": "6", - "line": "1520", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "2299", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_GetOscConfig", + "name": "HAL_RCCEx_WakeUpStopCLKConfig", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_GetClockConfig", + "ID": "c:@F@HAL_RCCEx_StandbyMSIRangeConfig", "What": "Function", "defdec": "Def", - "display": "void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *, uint32_t *)", + "display": "void HAL_RCCEx_StandbyMSIRangeConfig(uint32_t)", "location": { "column": "6", - "line": "1679", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "2317", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_GetClockConfig", + "name": "HAL_RCCEx_StandbyMSIRangeConfig", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_EnableCSS", + "ID": "c:@F@HAL_RCCEx_EnableLSECSS", "What": "Function", "defdec": "Def", - "display": "void HAL_RCC_EnableCSS(void)", + "display": "void HAL_RCCEx_EnableLSECSS(void)", "location": { "column": "6", - "line": "1714", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "2331", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_EnableCSS", + "name": "HAL_RCCEx_EnableLSECSS", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_NMI_IRQHandler", + "ID": "c:@F@HAL_RCCEx_DisableLSECSS", "What": "Function", "defdec": "Def", - "display": "void HAL_RCC_NMI_IRQHandler(void)", + "display": "void HAL_RCCEx_DisableLSECSS(void)", "location": { "column": "6", - "line": "1724", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "2341", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_NMI_IRQHandler", + "name": "HAL_RCCEx_DisableLSECSS", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_CSSCallback", + "ID": "c:@F@HAL_RCCEx_EnableLSECSS_IT", "What": "Function", "defdec": "Def", - "display": "void HAL_RCC_CSSCallback(void)", + "display": "void HAL_RCCEx_EnableLSECSS_IT(void)", + "location": { + "column": "6", + "line": "2354", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_EnableLSECSS_IT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_LSECSS_IRQHandler", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_LSECSS_IRQHandler(void)", + "location": { + "column": "6", + "line": "2371", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_LSECSS_IRQHandler", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_LSECSS_Callback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_LSECSS_Callback(void)", "location": { "column": "13", - "line": "1741", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "line": "2388", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_CSSCallback", + "name": "HAL_RCCEx_LSECSS_Callback", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_RCC_GetResetSource", + "ID": "c:@F@HAL_RCCEx_EnableLSCO", "What": "Function", "defdec": "Def", - "display": "uint32_t HAL_RCC_GetResetSource(void)", + "display": "void HAL_RCCEx_EnableLSCO(uint32_t)", "location": { - "column": "10", - "line": "1755", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "6", + "line": "2403", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_RCC_GetResetSource", + "name": "HAL_RCCEx_EnableLSCO", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@67108@F@HAL_RCC_GetResetSource@reset", + "ID": "c:stm32l4xx_hal_rcc_ex.c@90646@F@HAL_RCCEx_EnableLSCO@GPIO_InitStruct", "What": "Variable", "defdec": "Def", - "display": "reset", + "display": "GPIO_InitStruct", "location": { - "column": "12", - "line": "1757", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "20", + "line": "2405", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "reset", + "name": "GPIO_InitStruct", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@F@RCC_SetFlashLatencyFromMSIRange", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef RCC_SetFlashLatencyFromMSIRange(uint32_t)", - "location": { - "column": "26", - "line": "1785", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" - }, - "name": "RCC_SetFlashLatencyFromMSIRange", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc.c@67761@F@RCC_SetFlashLatencyFromMSIRange@vos", + "ID": "c:stm32l4xx_hal_rcc_ex.c@90683@F@HAL_RCCEx_EnableLSCO@pwrclkchanged", "What": "Variable", "defdec": "Def", - "display": "vos", + "display": "pwrclkchanged", "location": { - "column": "12", - "line": "1787", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "20", + "line": "2406", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "vos", + "name": "pwrclkchanged", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@67778@F@RCC_SetFlashLatencyFromMSIRange@latency", + "ID": "c:stm32l4xx_hal_rcc_ex.c@90726@F@HAL_RCCEx_EnableLSCO@backupchanged", "What": "Variable", "defdec": "Def", - "display": "latency", + "display": "backupchanged", "location": { - "column": "12", - "line": "1788", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "20", + "line": "2407", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "latency", + "name": "backupchanged", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_rcc.c@67947@F@RCC_SetFlashLatencyFromMSIRange@tmpreg", + "ID": "c:stm32l4xx_hal_rcc_ex.c@90882@F@HAL_RCCEx_EnableLSCO@tmpreg", "What": "Variable", "defdec": "Def", "display": "tmpreg", "location": { - "column": "5", - "line": "1796", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + "column": "3", + "line": "2413", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, "name": "tmpreg", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_pwr_ex.c@1603@macro@PWR_PORTH_AVAILABLE_PINS", - "What": "MacroDef", + "ID": "c:stm32l4xx_hal_rcc_ex.c@91293@F@HAL_RCCEx_EnableLSCO@tmpreg", + "What": "Variable", "defdec": "Def", - "display": "PWR_PORTH_AVAILABLE_PINS", + "display": "tmpreg", "location": { - "column": "9", - "line": "42", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "column": "5", + "line": "2425", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "PWR_PORTH_AVAILABLE_PINS", + "name": "tmpreg", "origin": "project_file", "scope": null }, { - "ID": "c:stm32l4xx_hal_pwr_ex.c@2870@macro@PVM_MODE_IT", - "What": "MacroDef", - "defdec": "Def", - "display": "PVM_MODE_IT", - "location": { - "column": "9", - "line": "62", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "PVM_MODE_IT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@2993@macro@PVM_MODE_EVT", - "What": "MacroDef", - "defdec": "Def", - "display": "PVM_MODE_EVT", - "location": { - "column": "9", - "line": "63", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "PVM_MODE_EVT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@3116@macro@PVM_RISING_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "PVM_RISING_EDGE", - "location": { - "column": "9", - "line": "64", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "PVM_RISING_EDGE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@3239@macro@PVM_FALLING_EDGE", - "What": "MacroDef", - "defdec": "Def", - "display": "PVM_FALLING_EDGE", - "location": { - "column": "9", - "line": "65", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "PVM_FALLING_EDGE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@3473@macro@PWR_FLAG_SETTING_DELAY_US", - "What": "MacroDef", - "defdec": "Def", - "display": "PWR_FLAG_SETTING_DELAY_US", - "location": { - "column": "9", - "line": "73", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "PWR_FLAG_SETTING_DELAY_US", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_GetVoltageRange", + "ID": "c:@F@HAL_RCCEx_DisableLSCO", "What": "Function", "defdec": "Def", - "display": "uint32_t HAL_PWREx_GetVoltageRange(void)", + "display": "void HAL_RCCEx_DisableLSCO(void)", + "location": { + "column": "6", + "line": "2450", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_DisableLSCO", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@91829@F@HAL_RCCEx_DisableLSCO@pwrclkchanged", + "What": "Variable", + "defdec": "Def", + "display": "pwrclkchanged", + "location": { + "column": "20", + "line": "2452", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "pwrclkchanged", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@91872@F@HAL_RCCEx_DisableLSCO@backupchanged", + "What": "Variable", + "defdec": "Def", + "display": "backupchanged", + "location": { + "column": "20", + "line": "2453", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "backupchanged", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@92024@F@HAL_RCCEx_DisableLSCO@tmpreg", + "What": "Variable", + "defdec": "Def", + "display": "tmpreg", + "location": { + "column": "5", + "line": "2458", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "tmpreg", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_EnableMSIPLLMode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_EnableMSIPLLMode(void)", + "location": { + "column": "6", + "line": "2488", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_EnableMSIPLLMode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_DisableMSIPLLMode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_DisableMSIPLLMode(void)", + "location": { + "column": "6", + "line": "2498", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_DisableMSIPLLMode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_CRSConfig", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *)", + "location": { + "column": "6", + "line": "2595", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_CRSConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@97951@F@HAL_RCCEx_CRSConfig@value", + "What": "Variable", + "defdec": "Def", + "display": "value", + "location": { + "column": "12", + "line": "2597", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "value", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_CRSSoftwareSynchronizationGenerate", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_CRSSoftwareSynchronizationGenerate(void)", + "location": { + "column": "6", + "line": "2638", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_CRSSoftwareSynchronizationGenerate", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_CRSGetSynchronizationInfo", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_CRSGetSynchronizationInfo(RCC_CRSSynchroInfoTypeDef *)", + "location": { + "column": "6", + "line": "2648", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_CRSGetSynchronizationInfo", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_CRSWaitSynchronization", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_RCCEx_CRSWaitSynchronization(uint32_t)", "location": { "column": "10", - "line": "114", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "line": "2681", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_PWREx_GetVoltageRange", + "name": "HAL_RCCEx_CRSWaitSynchronization", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_PWREx_ControlVoltageScaling", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWREx_ControlVoltageScaling(uint32_t)", - "location": { - "column": "19", - "line": "163", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_ControlVoltageScaling", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@7159@F@HAL_PWREx_ControlVoltageScaling@wait_loop_index", + "ID": "c:stm32l4xx_hal_rcc_ex.c@101227@F@HAL_RCCEx_CRSWaitSynchronization@crsstatus", "What": "Variable", "defdec": "Def", - "display": "wait_loop_index", + "display": "crsstatus", "location": { "column": "12", - "line": "165", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "line": "2683", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "wait_loop_index", + "name": "crsstatus", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_PWREx_EnableBatteryCharging", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_EnableBatteryCharging(uint32_t)", - "location": { - "column": "6", - "line": "282", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnableBatteryCharging", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisableBatteryCharging", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_DisableBatteryCharging(void)", - "location": { - "column": "6", - "line": "298", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisableBatteryCharging", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_EnableInternalWakeUpLine", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_EnableInternalWakeUpLine(void)", - "location": { - "column": "6", - "line": "353", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnableInternalWakeUpLine", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisableInternalWakeUpLine", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_DisableInternalWakeUpLine(void)", - "location": { - "column": "6", - "line": "363", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisableInternalWakeUpLine", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_EnableGPIOPullUp", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWREx_EnableGPIOPullUp(uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "391", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnableGPIOPullUp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@13940@F@HAL_PWREx_EnableGPIOPullUp@status", + "ID": "c:stm32l4xx_hal_rcc_ex.c@101265@F@HAL_RCCEx_CRSWaitSynchronization@tickstart", "What": "Variable", "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "393", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisableGPIOPullUp", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWREx_DisableGPIOPullUp(uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "474", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisableGPIOPullUp", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@16785@F@HAL_PWREx_DisableGPIOPullUp@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "476", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_EnableGPIOPullDown", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWREx_EnableGPIOPullDown(uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "551", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnableGPIOPullDown", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@19425@F@HAL_PWREx_EnableGPIOPullDown@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "553", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisableGPIOPullDown", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWREx_DisableGPIOPullDown(uint32_t, uint32_t)", - "location": { - "column": "19", - "line": "634", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisableGPIOPullDown", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@22263@F@HAL_PWREx_DisableGPIOPullDown@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "636", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_EnablePullUpPullDownConfig", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_EnablePullUpPullDownConfig(void)", - "location": { - "column": "6", - "line": "704", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnablePullUpPullDownConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisablePullUpPullDownConfig", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_DisablePullUpPullDownConfig(void)", - "location": { - "column": "6", - "line": "716", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisablePullUpPullDownConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_EnableSRAM2ContentRetention", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_EnableSRAM2ContentRetention(void)", - "location": { - "column": "6", - "line": "727", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnableSRAM2ContentRetention", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisableSRAM2ContentRetention", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_DisableSRAM2ContentRetention(void)", - "location": { - "column": "6", - "line": "736", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisableSRAM2ContentRetention", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_SetSRAM2ContentRetention", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWREx_SetSRAM2ContentRetention(uint32_t)", - "location": { - "column": "19", - "line": "751", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_SetSRAM2ContentRetention", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_EnablePVM3", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_EnablePVM3(void)", - "location": { - "column": "6", - "line": "919", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnablePVM3", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisablePVM3", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_DisablePVM3(void)", - "location": { - "column": "6", - "line": "928", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisablePVM3", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_EnablePVM4", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_EnablePVM4(void)", - "location": { - "column": "6", - "line": "938", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnablePVM4", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisablePVM4", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_DisablePVM4(void)", - "location": { - "column": "6", - "line": "947", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisablePVM4", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_ConfigPVM", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWREx_ConfigPVM(PWR_PVMTypeDef *)", - "location": { - "column": "19", - "line": "967", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_ConfigPVM", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@31102@F@HAL_PWREx_ConfigPVM@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "969", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_EnableLowPowerRunMode", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_EnableLowPowerRunMode(void)", - "location": { - "column": "6", - "line": "1129", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_EnableLowPowerRunMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_DisableLowPowerRunMode", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_PWREx_DisableLowPowerRunMode(void)", - "location": { - "column": "19", - "line": "1144", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_DisableLowPowerRunMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_pwr_ex.c@36591@F@HAL_PWREx_DisableLowPowerRunMode@wait_loop_index", - "What": "Variable", - "defdec": "Def", - "display": "wait_loop_index", + "display": "tickstart", "location": { "column": "12", - "line": "1146", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "line": "2684", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "wait_loop_index", + "name": "tickstart", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_PWREx_EnterSTOP0Mode", + "ID": "c:@F@HAL_RCCEx_CRS_IRQHandler", "What": "Function", "defdec": "Def", - "display": "void HAL_PWREx_EnterSTOP0Mode(uint8_t)", + "display": "void HAL_RCCEx_CRS_IRQHandler(void)", "location": { "column": "6", - "line": "1188", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "line": "2764", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_PWREx_EnterSTOP0Mode", + "name": "HAL_RCCEx_CRS_IRQHandler", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_PWREx_EnterSTOP1Mode", - "What": "Function", + "ID": "c:stm32l4xx_hal_rcc_ex.c@103328@F@HAL_RCCEx_CRS_IRQHandler@crserror", + "What": "Variable", "defdec": "Def", - "display": "void HAL_PWREx_EnterSTOP1Mode(uint8_t)", + "display": "crserror", "location": { - "column": "6", - "line": "1239", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "column": "12", + "line": "2766", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_PWREx_EnterSTOP1Mode", + "name": "crserror", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_PWREx_EnterSTOP2Mode", - "What": "Function", + "ID": "c:stm32l4xx_hal_rcc_ex.c@103417@F@HAL_RCCEx_CRS_IRQHandler@itflags", + "What": "Variable", "defdec": "Def", - "display": "void HAL_PWREx_EnterSTOP2Mode(uint8_t)", + "display": "itflags", "location": { - "column": "6", - "line": "1292", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "column": "12", + "line": "2768", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_PWREx_EnterSTOP2Mode", + "name": "itflags", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_PWREx_EnterSHUTDOWNMode", - "What": "Function", + "ID": "c:stm32l4xx_hal_rcc_ex.c@103459@F@HAL_RCCEx_CRS_IRQHandler@itsources", + "What": "Variable", "defdec": "Def", - "display": "void HAL_PWREx_EnterSHUTDOWNMode(void)", + "display": "itsources", "location": { - "column": "6", - "line": "1334", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "column": "12", + "line": "2769", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_PWREx_EnterSHUTDOWNMode", + "name": "itsources", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_PWREx_PVD_PVM_IRQHandler", + "ID": "c:@F@HAL_RCCEx_CRS_SyncOkCallback", "What": "Function", "defdec": "Def", - "display": "void HAL_PWREx_PVD_PVM_IRQHandler(void)", - "location": { - "column": "6", - "line": "1359", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" - }, - "name": "HAL_PWREx_PVD_PVM_IRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_PWREx_PVM3Callback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_PWREx_PVM3Callback(void)", + "display": "void HAL_RCCEx_CRS_SyncOkCallback(void)", "location": { "column": "13", - "line": "1440", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "line": "2829", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_PWREx_PVM3Callback", + "name": "HAL_RCCEx_CRS_SyncOkCallback", "origin": "project_file", "scope": null }, { - "ID": "c:@F@HAL_PWREx_PVM4Callback", + "ID": "c:@F@HAL_RCCEx_CRS_SyncWarnCallback", "What": "Function", "defdec": "Def", - "display": "void HAL_PWREx_PVM4Callback(void)", + "display": "void HAL_RCCEx_CRS_SyncWarnCallback(void)", "location": { "column": "13", - "line": "1451", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + "line": "2840", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" }, - "name": "HAL_PWREx_PVM4Callback", + "name": "HAL_RCCEx_CRS_SyncWarnCallback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_CRS_ExpectedSyncCallback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_CRS_ExpectedSyncCallback(void)", + "location": { + "column": "13", + "line": "2851", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_CRS_ExpectedSyncCallback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCCEx_CRS_ErrorCallback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCCEx_CRS_ErrorCallback(uint32_t)", + "location": { + "column": "13", + "line": "2867", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "HAL_RCCEx_CRS_ErrorCallback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@F@RCCEx_PLLSAI1_Config", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef RCCEx_PLLSAI1_Config(RCC_PLLSAI1InitTypeDef *, uint32_t)", + "location": { + "column": "26", + "line": "2903", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "RCCEx_PLLSAI1_Config", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@107397@F@RCCEx_PLLSAI1_Config@tickstart", + "What": "Variable", + "defdec": "Def", + "display": "tickstart", + "location": { + "column": "12", + "line": "2905", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "tickstart", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@107420@F@RCCEx_PLLSAI1_Config@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "2906", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@F@RCCEx_GetSAIxPeriphCLKFreq", + "What": "Function", + "defdec": "Def", + "display": "uint32_t RCCEx_GetSAIxPeriphCLKFreq(uint32_t, uint32_t)", + "location": { + "column": "17", + "line": "3305", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "RCCEx_GetSAIxPeriphCLKFreq", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@122463@F@RCCEx_GetSAIxPeriphCLKFreq@frequency", + "What": "Variable", + "defdec": "Def", + "display": "frequency", + "location": { + "column": "12", + "line": "3307", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "frequency", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@122491@F@RCCEx_GetSAIxPeriphCLKFreq@srcclk", + "What": "Variable", + "defdec": "Def", + "display": "srcclk", + "location": { + "column": "12", + "line": "3308", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "srcclk", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@122516@F@RCCEx_GetSAIxPeriphCLKFreq@pllvco", + "What": "Variable", + "defdec": "Def", + "display": "pllvco", + "location": { + "column": "12", + "line": "3309", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "pllvco", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@122516@F@RCCEx_GetSAIxPeriphCLKFreq@plln", + "What": "Variable", + "defdec": "Dec", + "display": "plln", + "location": { + "column": "20", + "line": "3309", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "plln", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc_ex.c@122597@F@RCCEx_GetSAIxPeriphCLKFreq@pllp", + "What": "Variable", + "defdec": "Def", + "display": "pllp", + "location": { + "column": "12", + "line": "3311", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" + }, + "name": "pllp", "origin": "project_file", "scope": null }, @@ -348633,6 +348649,1574 @@ "origin": "project_file", "scope": null }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@1603@macro@PWR_PORTH_AVAILABLE_PINS", + "What": "MacroDef", + "defdec": "Def", + "display": "PWR_PORTH_AVAILABLE_PINS", + "location": { + "column": "9", + "line": "42", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "PWR_PORTH_AVAILABLE_PINS", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@2870@macro@PVM_MODE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "PVM_MODE_IT", + "location": { + "column": "9", + "line": "62", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "PVM_MODE_IT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@2993@macro@PVM_MODE_EVT", + "What": "MacroDef", + "defdec": "Def", + "display": "PVM_MODE_EVT", + "location": { + "column": "9", + "line": "63", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "PVM_MODE_EVT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@3116@macro@PVM_RISING_EDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "PVM_RISING_EDGE", + "location": { + "column": "9", + "line": "64", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "PVM_RISING_EDGE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@3239@macro@PVM_FALLING_EDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "PVM_FALLING_EDGE", + "location": { + "column": "9", + "line": "65", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "PVM_FALLING_EDGE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@3473@macro@PWR_FLAG_SETTING_DELAY_US", + "What": "MacroDef", + "defdec": "Def", + "display": "PWR_FLAG_SETTING_DELAY_US", + "location": { + "column": "9", + "line": "73", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "PWR_FLAG_SETTING_DELAY_US", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_GetVoltageRange", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_PWREx_GetVoltageRange(void)", + "location": { + "column": "10", + "line": "114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_GetVoltageRange", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_ControlVoltageScaling", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWREx_ControlVoltageScaling(uint32_t)", + "location": { + "column": "19", + "line": "163", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_ControlVoltageScaling", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@7159@F@HAL_PWREx_ControlVoltageScaling@wait_loop_index", + "What": "Variable", + "defdec": "Def", + "display": "wait_loop_index", + "location": { + "column": "12", + "line": "165", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "wait_loop_index", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnableBatteryCharging", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnableBatteryCharging(uint32_t)", + "location": { + "column": "6", + "line": "282", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnableBatteryCharging", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisableBatteryCharging", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_DisableBatteryCharging(void)", + "location": { + "column": "6", + "line": "298", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisableBatteryCharging", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnableInternalWakeUpLine", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnableInternalWakeUpLine(void)", + "location": { + "column": "6", + "line": "353", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnableInternalWakeUpLine", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisableInternalWakeUpLine", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_DisableInternalWakeUpLine(void)", + "location": { + "column": "6", + "line": "363", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisableInternalWakeUpLine", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnableGPIOPullUp", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWREx_EnableGPIOPullUp(uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "391", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnableGPIOPullUp", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@13940@F@HAL_PWREx_EnableGPIOPullUp@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "393", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisableGPIOPullUp", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWREx_DisableGPIOPullUp(uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "474", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisableGPIOPullUp", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@16785@F@HAL_PWREx_DisableGPIOPullUp@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "476", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnableGPIOPullDown", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWREx_EnableGPIOPullDown(uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "551", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnableGPIOPullDown", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@19425@F@HAL_PWREx_EnableGPIOPullDown@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "553", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisableGPIOPullDown", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWREx_DisableGPIOPullDown(uint32_t, uint32_t)", + "location": { + "column": "19", + "line": "634", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisableGPIOPullDown", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@22263@F@HAL_PWREx_DisableGPIOPullDown@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "636", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnablePullUpPullDownConfig", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnablePullUpPullDownConfig(void)", + "location": { + "column": "6", + "line": "704", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnablePullUpPullDownConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisablePullUpPullDownConfig", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_DisablePullUpPullDownConfig(void)", + "location": { + "column": "6", + "line": "716", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisablePullUpPullDownConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnableSRAM2ContentRetention", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnableSRAM2ContentRetention(void)", + "location": { + "column": "6", + "line": "727", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnableSRAM2ContentRetention", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisableSRAM2ContentRetention", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_DisableSRAM2ContentRetention(void)", + "location": { + "column": "6", + "line": "736", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisableSRAM2ContentRetention", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_SetSRAM2ContentRetention", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWREx_SetSRAM2ContentRetention(uint32_t)", + "location": { + "column": "19", + "line": "751", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_SetSRAM2ContentRetention", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnablePVM3", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnablePVM3(void)", + "location": { + "column": "6", + "line": "919", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnablePVM3", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisablePVM3", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_DisablePVM3(void)", + "location": { + "column": "6", + "line": "928", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisablePVM3", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnablePVM4", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnablePVM4(void)", + "location": { + "column": "6", + "line": "938", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnablePVM4", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisablePVM4", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_DisablePVM4(void)", + "location": { + "column": "6", + "line": "947", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisablePVM4", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_ConfigPVM", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWREx_ConfigPVM(PWR_PVMTypeDef *)", + "location": { + "column": "19", + "line": "967", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_ConfigPVM", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@31102@F@HAL_PWREx_ConfigPVM@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "969", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnableLowPowerRunMode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnableLowPowerRunMode(void)", + "location": { + "column": "6", + "line": "1129", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnableLowPowerRunMode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_DisableLowPowerRunMode", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWREx_DisableLowPowerRunMode(void)", + "location": { + "column": "19", + "line": "1144", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_DisableLowPowerRunMode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr_ex.c@36591@F@HAL_PWREx_DisableLowPowerRunMode@wait_loop_index", + "What": "Variable", + "defdec": "Def", + "display": "wait_loop_index", + "location": { + "column": "12", + "line": "1146", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "wait_loop_index", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnterSTOP0Mode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnterSTOP0Mode(uint8_t)", + "location": { + "column": "6", + "line": "1188", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnterSTOP0Mode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnterSTOP1Mode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnterSTOP1Mode(uint8_t)", + "location": { + "column": "6", + "line": "1239", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnterSTOP1Mode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnterSTOP2Mode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnterSTOP2Mode(uint8_t)", + "location": { + "column": "6", + "line": "1292", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnterSTOP2Mode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_EnterSHUTDOWNMode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_EnterSHUTDOWNMode(void)", + "location": { + "column": "6", + "line": "1334", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_EnterSHUTDOWNMode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_PVD_PVM_IRQHandler", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_PVD_PVM_IRQHandler(void)", + "location": { + "column": "6", + "line": "1359", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_PVD_PVM_IRQHandler", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_PVM3Callback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_PVM3Callback(void)", + "location": { + "column": "13", + "line": "1440", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_PVM3Callback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWREx_PVM4Callback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWREx_PVM4Callback(void)", + "location": { + "column": "13", + "line": "1451", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr_ex.c" + }, + "name": "HAL_PWREx_PVM4Callback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@2910@macro@HSE_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "HSE_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "69", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HSE_TIMEOUT_VALUE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@2966@macro@HSI_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "HSI_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "70", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HSI_TIMEOUT_VALUE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3038@macro@MSI_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "MSI_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "71", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "MSI_TIMEOUT_VALUE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3229@macro@LSI_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "LSI_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "75", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "LSI_TIMEOUT_VALUE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3333@macro@HSI48_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "HSI48_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "77", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HSI48_TIMEOUT_VALUE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3405@macro@PLL_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "PLL_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "78", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "PLL_TIMEOUT_VALUE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3477@macro@CLOCKSWITCH_TIMEOUT_VALUE", + "What": "MacroDef", + "defdec": "Def", + "display": "CLOCKSWITCH_TIMEOUT_VALUE", + "location": { + "column": "9", + "line": "79", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "CLOCKSWITCH_TIMEOUT_VALUE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3702@macro@__MCO1_CLK_ENABLE", + "What": "MacroDef", + "defdec": "Def", + "display": "__MCO1_CLK_ENABLE", + "location": { + "column": "9", + "line": "88", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "__MCO1_CLK_ENABLE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3762@macro@MCO1_GPIO_PORT", + "What": "MacroDef", + "defdec": "Def", + "display": "MCO1_GPIO_PORT", + "location": { + "column": "9", + "line": "89", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "MCO1_GPIO_PORT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3799@macro@MCO1_PIN", + "What": "MacroDef", + "defdec": "Def", + "display": "MCO1_PIN", + "location": { + "column": "9", + "line": "90", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "MCO1_PIN", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@3843@macro@RCC_PLL_OSCSOURCE_CONFIG", + "What": "MacroDef", + "defdec": "Def", + "display": "RCC_PLL_OSCSOURCE_CONFIG", + "location": { + "column": "9", + "line": "92", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "RCC_PLL_OSCSOURCE_CONFIG", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@F@RCC_SetFlashLatencyFromMSIRange", + "What": "Function", + "defdec": "Dec", + "display": "HAL_StatusTypeDef RCC_SetFlashLatencyFromMSIRange(uint32_t)", + "location": { + "column": "26", + "line": "104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "RCC_SetFlashLatencyFromMSIRange", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_DeInit", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_RCC_DeInit(void)", + "location": { + "column": "19", + "line": "265", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_DeInit", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@13817@F@HAL_RCC_DeInit@tickstart", + "What": "Variable", + "defdec": "Def", + "display": "tickstart", + "location": { + "column": "12", + "line": "267", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "tickstart", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_OscConfig", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_RCC_OscConfig(RCC_OscInitTypeDef *)", + "location": { + "column": "19", + "line": "403", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_OscConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@17938@F@HAL_RCC_OscConfig@tickstart", + "What": "Variable", + "defdec": "Def", + "display": "tickstart", + "location": { + "column": "12", + "line": "405", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "tickstart", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@17961@F@HAL_RCC_OscConfig@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "406", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@17990@F@HAL_RCC_OscConfig@sysclk_source", + "What": "Variable", + "defdec": "Def", + "display": "sysclk_source", + "location": { + "column": "12", + "line": "407", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "sysclk_source", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@17990@F@HAL_RCC_OscConfig@pll_config", + "What": "Variable", + "defdec": "Dec", + "display": "pll_config", + "location": { + "column": "27", + "line": "407", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "pll_config", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@29033@F@HAL_RCC_OscConfig@pwrclkchanged", + "What": "Variable", + "defdec": "Def", + "display": "pwrclkchanged", + "location": { + "column": "22", + "line": "731", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "pwrclkchanged", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@29388@F@HAL_RCC_OscConfig@tmpreg", + "What": "Variable", + "defdec": "Def", + "display": "tmpreg", + "location": { + "column": "7", + "line": "740", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "tmpreg", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_ClockConfig", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_RCC_ClockConfig(RCC_ClkInitTypeDef *, uint32_t)", + "location": { + "column": "19", + "line": "1095", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_ClockConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@42369@F@HAL_RCC_ClockConfig@tickstart", + "What": "Variable", + "defdec": "Def", + "display": "tickstart", + "location": { + "column": "12", + "line": "1097", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "tickstart", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@42637@F@HAL_RCC_ClockConfig@status", + "What": "Variable", + "defdec": "Def", + "display": "status", + "location": { + "column": "21", + "line": "1102", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "status", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_MCOConfig", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCC_MCOConfig(uint32_t, uint32_t, uint32_t)", + "location": { + "column": "6", + "line": "1337", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_MCOConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@52151@F@HAL_RCC_MCOConfig@GPIO_InitStruct", + "What": "Variable", + "defdec": "Def", + "display": "GPIO_InitStruct", + "location": { + "column": "20", + "line": "1339", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "GPIO_InitStruct", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@52486@F@HAL_RCC_MCOConfig@tmpreg", + "What": "Variable", + "defdec": "Def", + "display": "tmpreg", + "location": { + "column": "3", + "line": "1350", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "tmpreg", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetSysClockFreq", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_RCC_GetSysClockFreq(void)", + "location": { + "column": "10", + "line": "1396", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_GetSysClockFreq", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@54842@F@HAL_RCC_GetSysClockFreq@msirange", + "What": "Variable", + "defdec": "Def", + "display": "msirange", + "location": { + "column": "12", + "line": "1398", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "msirange", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@54842@F@HAL_RCC_GetSysClockFreq@sysclockfreq", + "What": "Variable", + "defdec": "Dec", + "display": "sysclockfreq", + "location": { + "column": "27", + "line": "1398", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "sysclockfreq", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@54888@F@HAL_RCC_GetSysClockFreq@pllvco", + "What": "Variable", + "defdec": "Def", + "display": "pllvco", + "location": { + "column": "12", + "line": "1399", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "pllvco", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@54888@F@HAL_RCC_GetSysClockFreq@pllsource", + "What": "Variable", + "defdec": "Dec", + "display": "pllsource", + "location": { + "column": "20", + "line": "1399", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "pllsource", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@54888@F@HAL_RCC_GetSysClockFreq@pllr", + "What": "Variable", + "defdec": "Dec", + "display": "pllr", + "location": { + "column": "31", + "line": "1399", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "pllr", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@54888@F@HAL_RCC_GetSysClockFreq@pllm", + "What": "Variable", + "defdec": "Dec", + "display": "pllm", + "location": { + "column": "37", + "line": "1399", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "pllm", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@54955@F@HAL_RCC_GetSysClockFreq@sysclk_source", + "What": "Variable", + "defdec": "Def", + "display": "sysclk_source", + "location": { + "column": "12", + "line": "1400", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "sysclk_source", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@54955@F@HAL_RCC_GetSysClockFreq@pll_oscsource", + "What": "Variable", + "defdec": "Dec", + "display": "pll_oscsource", + "location": { + "column": "27", + "line": "1400", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "pll_oscsource", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetHCLKFreq", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_RCC_GetHCLKFreq(void)", + "location": { + "column": "10", + "line": "1484", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_GetHCLKFreq", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetPCLK1Freq", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_RCC_GetPCLK1Freq(void)", + "location": { + "column": "10", + "line": "1495", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_GetPCLK1Freq", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetPCLK2Freq", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_RCC_GetPCLK2Freq(void)", + "location": { + "column": "10", + "line": "1507", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_GetPCLK2Freq", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetOscConfig", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCC_GetOscConfig(RCC_OscInitTypeDef *)", + "location": { + "column": "6", + "line": "1520", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_GetOscConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetClockConfig", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCC_GetClockConfig(RCC_ClkInitTypeDef *, uint32_t *)", + "location": { + "column": "6", + "line": "1679", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_GetClockConfig", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_EnableCSS", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCC_EnableCSS(void)", + "location": { + "column": "6", + "line": "1714", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_EnableCSS", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_NMI_IRQHandler", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCC_NMI_IRQHandler(void)", + "location": { + "column": "6", + "line": "1724", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_NMI_IRQHandler", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_CSSCallback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_RCC_CSSCallback(void)", + "location": { + "column": "13", + "line": "1741", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_CSSCallback", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_RCC_GetResetSource", + "What": "Function", + "defdec": "Def", + "display": "uint32_t HAL_RCC_GetResetSource(void)", + "location": { + "column": "10", + "line": "1755", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "HAL_RCC_GetResetSource", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@67108@F@HAL_RCC_GetResetSource@reset", + "What": "Variable", + "defdec": "Def", + "display": "reset", + "location": { + "column": "12", + "line": "1757", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "reset", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@F@RCC_SetFlashLatencyFromMSIRange", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef RCC_SetFlashLatencyFromMSIRange(uint32_t)", + "location": { + "column": "26", + "line": "1785", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "RCC_SetFlashLatencyFromMSIRange", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@67761@F@RCC_SetFlashLatencyFromMSIRange@vos", + "What": "Variable", + "defdec": "Def", + "display": "vos", + "location": { + "column": "12", + "line": "1787", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "vos", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@67778@F@RCC_SetFlashLatencyFromMSIRange@latency", + "What": "Variable", + "defdec": "Def", + "display": "latency", + "location": { + "column": "12", + "line": "1788", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "latency", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_rcc.c@67947@F@RCC_SetFlashLatencyFromMSIRange@tmpreg", + "What": "Variable", + "defdec": "Def", + "display": "tmpreg", + "location": { + "column": "5", + "line": "1796", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc.c" + }, + "name": "tmpreg", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr.c@1515@macro@PVD_MODE_IT", + "What": "MacroDef", + "defdec": "Def", + "display": "PVD_MODE_IT", + "location": { + "column": "9", + "line": "48", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "PVD_MODE_IT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr.c@1638@macro@PVD_MODE_EVT", + "What": "MacroDef", + "defdec": "Def", + "display": "PVD_MODE_EVT", + "location": { + "column": "9", + "line": "49", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "PVD_MODE_EVT", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr.c@1761@macro@PVD_RISING_EDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "PVD_RISING_EDGE", + "location": { + "column": "9", + "line": "50", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "PVD_RISING_EDGE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:stm32l4xx_hal_pwr.c@1884@macro@PVD_FALLING_EDGE", + "What": "MacroDef", + "defdec": "Def", + "display": "PVD_FALLING_EDGE", + "location": { + "column": "9", + "line": "51", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "PVD_FALLING_EDGE", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_DeInit", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_DeInit(void)", + "location": { + "column": "6", + "line": "86", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_DeInit", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_EnableBkUpAccess", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_EnableBkUpAccess(void)", + "location": { + "column": "6", + "line": "104", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_EnableBkUpAccess", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_DisableBkUpAccess", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_DisableBkUpAccess(void)", + "location": { + "column": "6", + "line": "114", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_DisableBkUpAccess", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_ConfigPVD", + "What": "Function", + "defdec": "Def", + "display": "HAL_StatusTypeDef HAL_PWR_ConfigPVD(PWR_PVDTypeDef *)", + "location": { + "column": "19", + "line": "311", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_ConfigPVD", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_EnablePVD", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_EnablePVD(void)", + "location": { + "column": "6", + "line": "357", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_EnablePVD", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_DisablePVD", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_DisablePVD(void)", + "location": { + "column": "6", + "line": "366", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_DisablePVD", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_EnableWakeUpPin", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_EnableWakeUpPin(uint32_t)", + "location": { + "column": "6", + "line": "391", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_EnableWakeUpPin", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_DisableWakeUpPin", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_DisableWakeUpPin(uint32_t)", + "location": { + "column": "6", + "line": "412", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_DisableWakeUpPin", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_EnterSLEEPMode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_EnterSLEEPMode(uint32_t, uint8_t)", + "location": { + "column": "6", + "line": "444", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_EnterSLEEPMode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_EnterSTOPMode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_EnterSTOPMode(uint32_t, uint8_t)", + "location": { + "column": "6", + "line": "523", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_EnterSTOPMode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_EnterSTANDBYMode", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_EnterSTANDBYMode(void)", + "location": { + "column": "6", + "line": "556", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_EnterSTANDBYMode", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_EnableSleepOnExit", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_EnableSleepOnExit(void)", + "location": { + "column": "6", + "line": "582", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_EnableSleepOnExit", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_DisableSleepOnExit", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_DisableSleepOnExit(void)", + "location": { + "column": "6", + "line": "595", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_DisableSleepOnExit", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_EnableSEVOnPend", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_EnableSEVOnPend(void)", + "location": { + "column": "6", + "line": "609", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_EnableSEVOnPend", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_DisableSEVOnPend", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_DisableSEVOnPend(void)", + "location": { + "column": "6", + "line": "622", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_DisableSEVOnPend", + "origin": "project_file", + "scope": null + }, + { + "ID": "c:@F@HAL_PWR_PVDCallback", + "What": "Function", + "defdec": "Def", + "display": "void HAL_PWR_PVDCallback(void)", + "location": { + "column": "13", + "line": "636", + "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_pwr.c" + }, + "name": "HAL_PWR_PVDCallback", + "origin": "project_file", + "scope": null + }, { "ID": "c:stm32l4xx_hal_tim_ex.c@F@TIM_DMADelayPulseNCplt", "What": "Function", @@ -350131,1042 +351715,6 @@ "origin": "project_file", "scope": null }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1523@macro@PLLSAI1_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLLSAI1_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "43", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "PLLSAI1_TIMEOUT_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1594@macro@PLLSAI2_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLLSAI2_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "44", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "PLLSAI2_TIMEOUT_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1665@macro@PLL_TIMEOUT_VALUE", - "What": "MacroDef", - "defdec": "Def", - "display": "PLL_TIMEOUT_VALUE", - "location": { - "column": "9", - "line": "45", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "PLL_TIMEOUT_VALUE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1738@macro@DIVIDER_P_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "DIVIDER_P_UPDATE", - "location": { - "column": "9", - "line": "47", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "DIVIDER_P_UPDATE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1776@macro@DIVIDER_Q_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "DIVIDER_Q_UPDATE", - "location": { - "column": "9", - "line": "48", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "DIVIDER_Q_UPDATE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1814@macro@DIVIDER_R_UPDATE", - "What": "MacroDef", - "defdec": "Def", - "display": "DIVIDER_R_UPDATE", - "location": { - "column": "9", - "line": "49", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "DIVIDER_R_UPDATE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1854@macro@__LSCO_CLK_ENABLE", - "What": "MacroDef", - "defdec": "Def", - "display": "__LSCO_CLK_ENABLE", - "location": { - "column": "9", - "line": "51", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "__LSCO_CLK_ENABLE", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1918@macro@LSCO_GPIO_PORT", - "What": "MacroDef", - "defdec": "Def", - "display": "LSCO_GPIO_PORT", - "location": { - "column": "9", - "line": "52", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "LSCO_GPIO_PORT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@1959@macro@LSCO_PIN", - "What": "MacroDef", - "defdec": "Def", - "display": "LSCO_PIN", - "location": { - "column": "9", - "line": "53", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "LSCO_PIN", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@F@RCCEx_PLLSAI1_Config", - "What": "Function", - "defdec": "Dec", - "display": "HAL_StatusTypeDef RCCEx_PLLSAI1_Config(RCC_PLLSAI1InitTypeDef *, uint32_t)", - "location": { - "column": "26", - "line": "66", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "RCCEx_PLLSAI1_Config", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@F@RCCEx_GetSAIxPeriphCLKFreq", - "What": "Function", - "defdec": "Dec", - "display": "uint32_t RCCEx_GetSAIxPeriphCLKFreq(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "78", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "RCCEx_GetSAIxPeriphCLKFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_PeriphCLKConfig", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_RCCEx_PeriphCLKConfig(RCC_PeriphCLKInitTypeDef *)", - "location": { - "column": "19", - "line": "194", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_PeriphCLKConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@8674@F@HAL_RCCEx_PeriphCLKConfig@tmpregister", - "What": "Variable", - "defdec": "Def", - "display": "tmpregister", - "location": { - "column": "12", - "line": "196", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tmpregister", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@8674@F@HAL_RCCEx_PeriphCLKConfig@tickstart", - "What": "Variable", - "defdec": "Dec", - "display": "tickstart", - "location": { - "column": "25", - "line": "196", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tickstart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@8735@F@HAL_RCCEx_PeriphCLKConfig@ret", - "What": "Variable", - "defdec": "Def", - "display": "ret", - "location": { - "column": "21", - "line": "197", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "ret", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@8801@F@HAL_RCCEx_PeriphCLKConfig@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "198", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@13885@F@HAL_RCCEx_PeriphCLKConfig@pwrclkchanged", - "What": "Variable", - "defdec": "Def", - "display": "pwrclkchanged", - "location": { - "column": "22", - "line": "321", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "pwrclkchanged", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@14152@F@HAL_RCCEx_PeriphCLKConfig@tmpreg", - "What": "Variable", - "defdec": "Def", - "display": "tmpreg", - "location": { - "column": "7", - "line": "329", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tmpreg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_GetPeriphCLKConfig", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_GetPeriphCLKConfig(RCC_PeriphCLKInitTypeDef *)", - "location": { - "column": "6", - "line": "824", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_GetPeriphCLKConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_GetPeriphCLKFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_RCCEx_GetPeriphCLKFreq(uint32_t)", - "location": { - "column": "10", - "line": "1150", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_GetPeriphCLKFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@52390@F@HAL_RCCEx_GetPeriphCLKFreq@frequency", - "What": "Variable", - "defdec": "Def", - "display": "frequency", - "location": { - "column": "12", - "line": "1152", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "frequency", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@52418@F@HAL_RCCEx_GetPeriphCLKFreq@srcclk", - "What": "Variable", - "defdec": "Def", - "display": "srcclk", - "location": { - "column": "12", - "line": "1153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "srcclk", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@52418@F@HAL_RCCEx_GetPeriphCLKFreq@pll_oscsource", - "What": "Variable", - "defdec": "Dec", - "display": "pll_oscsource", - "location": { - "column": "20", - "line": "1153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "pll_oscsource", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@52418@F@HAL_RCCEx_GetPeriphCLKFreq@pllvco", - "What": "Variable", - "defdec": "Dec", - "display": "pllvco", - "location": { - "column": "35", - "line": "1153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "pllvco", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@52418@F@HAL_RCCEx_GetPeriphCLKFreq@plln", - "What": "Variable", - "defdec": "Dec", - "display": "plln", - "location": { - "column": "43", - "line": "1153", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "plln", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_EnablePLLSAI1", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_RCCEx_EnablePLLSAI1(RCC_PLLSAI1InitTypeDef *)", - "location": { - "column": "19", - "line": "2054", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_EnablePLLSAI1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@79295@F@HAL_RCCEx_EnablePLLSAI1@tickstart", - "What": "Variable", - "defdec": "Def", - "display": "tickstart", - "location": { - "column": "12", - "line": "2056", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tickstart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@79318@F@HAL_RCCEx_EnablePLLSAI1@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "2057", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_DisablePLLSAI1", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef HAL_RCCEx_DisablePLLSAI1(void)", - "location": { - "column": "19", - "line": "2122", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_DisablePLLSAI1", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@81522@F@HAL_RCCEx_DisablePLLSAI1@tickstart", - "What": "Variable", - "defdec": "Def", - "display": "tickstart", - "location": { - "column": "12", - "line": "2124", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tickstart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@81545@F@HAL_RCCEx_DisablePLLSAI1@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "2125", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_WakeUpStopCLKConfig", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_WakeUpStopCLKConfig(uint32_t)", - "location": { - "column": "6", - "line": "2299", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_WakeUpStopCLKConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_StandbyMSIRangeConfig", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_StandbyMSIRangeConfig(uint32_t)", - "location": { - "column": "6", - "line": "2317", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_StandbyMSIRangeConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_EnableLSECSS", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_EnableLSECSS(void)", - "location": { - "column": "6", - "line": "2331", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_EnableLSECSS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_DisableLSECSS", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_DisableLSECSS(void)", - "location": { - "column": "6", - "line": "2341", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_DisableLSECSS", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_EnableLSECSS_IT", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_EnableLSECSS_IT(void)", - "location": { - "column": "6", - "line": "2354", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_EnableLSECSS_IT", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_LSECSS_IRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_LSECSS_IRQHandler(void)", - "location": { - "column": "6", - "line": "2371", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_LSECSS_IRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_LSECSS_Callback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_LSECSS_Callback(void)", - "location": { - "column": "13", - "line": "2388", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_LSECSS_Callback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_EnableLSCO", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_EnableLSCO(uint32_t)", - "location": { - "column": "6", - "line": "2403", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_EnableLSCO", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@90646@F@HAL_RCCEx_EnableLSCO@GPIO_InitStruct", - "What": "Variable", - "defdec": "Def", - "display": "GPIO_InitStruct", - "location": { - "column": "20", - "line": "2405", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "GPIO_InitStruct", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@90683@F@HAL_RCCEx_EnableLSCO@pwrclkchanged", - "What": "Variable", - "defdec": "Def", - "display": "pwrclkchanged", - "location": { - "column": "20", - "line": "2406", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "pwrclkchanged", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@90726@F@HAL_RCCEx_EnableLSCO@backupchanged", - "What": "Variable", - "defdec": "Def", - "display": "backupchanged", - "location": { - "column": "20", - "line": "2407", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "backupchanged", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@90882@F@HAL_RCCEx_EnableLSCO@tmpreg", - "What": "Variable", - "defdec": "Def", - "display": "tmpreg", - "location": { - "column": "3", - "line": "2413", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tmpreg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@91293@F@HAL_RCCEx_EnableLSCO@tmpreg", - "What": "Variable", - "defdec": "Def", - "display": "tmpreg", - "location": { - "column": "5", - "line": "2425", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tmpreg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_DisableLSCO", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_DisableLSCO(void)", - "location": { - "column": "6", - "line": "2450", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_DisableLSCO", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@91829@F@HAL_RCCEx_DisableLSCO@pwrclkchanged", - "What": "Variable", - "defdec": "Def", - "display": "pwrclkchanged", - "location": { - "column": "20", - "line": "2452", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "pwrclkchanged", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@91872@F@HAL_RCCEx_DisableLSCO@backupchanged", - "What": "Variable", - "defdec": "Def", - "display": "backupchanged", - "location": { - "column": "20", - "line": "2453", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "backupchanged", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@92024@F@HAL_RCCEx_DisableLSCO@tmpreg", - "What": "Variable", - "defdec": "Def", - "display": "tmpreg", - "location": { - "column": "5", - "line": "2458", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tmpreg", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_EnableMSIPLLMode", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_EnableMSIPLLMode(void)", - "location": { - "column": "6", - "line": "2488", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_EnableMSIPLLMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_DisableMSIPLLMode", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_DisableMSIPLLMode(void)", - "location": { - "column": "6", - "line": "2498", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_DisableMSIPLLMode", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRSConfig", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_CRSConfig(RCC_CRSInitTypeDef *)", - "location": { - "column": "6", - "line": "2595", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRSConfig", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@97951@F@HAL_RCCEx_CRSConfig@value", - "What": "Variable", - "defdec": "Def", - "display": "value", - "location": { - "column": "12", - "line": "2597", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "value", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRSSoftwareSynchronizationGenerate", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_CRSSoftwareSynchronizationGenerate(void)", - "location": { - "column": "6", - "line": "2638", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRSSoftwareSynchronizationGenerate", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRSGetSynchronizationInfo", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_CRSGetSynchronizationInfo(RCC_CRSSynchroInfoTypeDef *)", - "location": { - "column": "6", - "line": "2648", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRSGetSynchronizationInfo", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRSWaitSynchronization", - "What": "Function", - "defdec": "Def", - "display": "uint32_t HAL_RCCEx_CRSWaitSynchronization(uint32_t)", - "location": { - "column": "10", - "line": "2681", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRSWaitSynchronization", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@101227@F@HAL_RCCEx_CRSWaitSynchronization@crsstatus", - "What": "Variable", - "defdec": "Def", - "display": "crsstatus", - "location": { - "column": "12", - "line": "2683", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "crsstatus", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@101265@F@HAL_RCCEx_CRSWaitSynchronization@tickstart", - "What": "Variable", - "defdec": "Def", - "display": "tickstart", - "location": { - "column": "12", - "line": "2684", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tickstart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRS_IRQHandler", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_CRS_IRQHandler(void)", - "location": { - "column": "6", - "line": "2764", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRS_IRQHandler", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@103328@F@HAL_RCCEx_CRS_IRQHandler@crserror", - "What": "Variable", - "defdec": "Def", - "display": "crserror", - "location": { - "column": "12", - "line": "2766", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "crserror", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@103417@F@HAL_RCCEx_CRS_IRQHandler@itflags", - "What": "Variable", - "defdec": "Def", - "display": "itflags", - "location": { - "column": "12", - "line": "2768", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "itflags", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@103459@F@HAL_RCCEx_CRS_IRQHandler@itsources", - "What": "Variable", - "defdec": "Def", - "display": "itsources", - "location": { - "column": "12", - "line": "2769", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "itsources", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRS_SyncOkCallback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_CRS_SyncOkCallback(void)", - "location": { - "column": "13", - "line": "2829", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRS_SyncOkCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRS_SyncWarnCallback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_CRS_SyncWarnCallback(void)", - "location": { - "column": "13", - "line": "2840", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRS_SyncWarnCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRS_ExpectedSyncCallback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_CRS_ExpectedSyncCallback(void)", - "location": { - "column": "13", - "line": "2851", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRS_ExpectedSyncCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:@F@HAL_RCCEx_CRS_ErrorCallback", - "What": "Function", - "defdec": "Def", - "display": "void HAL_RCCEx_CRS_ErrorCallback(uint32_t)", - "location": { - "column": "13", - "line": "2867", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "HAL_RCCEx_CRS_ErrorCallback", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@F@RCCEx_PLLSAI1_Config", - "What": "Function", - "defdec": "Def", - "display": "HAL_StatusTypeDef RCCEx_PLLSAI1_Config(RCC_PLLSAI1InitTypeDef *, uint32_t)", - "location": { - "column": "26", - "line": "2903", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "RCCEx_PLLSAI1_Config", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@107397@F@RCCEx_PLLSAI1_Config@tickstart", - "What": "Variable", - "defdec": "Def", - "display": "tickstart", - "location": { - "column": "12", - "line": "2905", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "tickstart", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@107420@F@RCCEx_PLLSAI1_Config@status", - "What": "Variable", - "defdec": "Def", - "display": "status", - "location": { - "column": "21", - "line": "2906", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "status", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@F@RCCEx_GetSAIxPeriphCLKFreq", - "What": "Function", - "defdec": "Def", - "display": "uint32_t RCCEx_GetSAIxPeriphCLKFreq(uint32_t, uint32_t)", - "location": { - "column": "17", - "line": "3305", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "RCCEx_GetSAIxPeriphCLKFreq", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@122463@F@RCCEx_GetSAIxPeriphCLKFreq@frequency", - "What": "Variable", - "defdec": "Def", - "display": "frequency", - "location": { - "column": "12", - "line": "3307", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "frequency", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@122491@F@RCCEx_GetSAIxPeriphCLKFreq@srcclk", - "What": "Variable", - "defdec": "Def", - "display": "srcclk", - "location": { - "column": "12", - "line": "3308", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "srcclk", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@122516@F@RCCEx_GetSAIxPeriphCLKFreq@pllvco", - "What": "Variable", - "defdec": "Def", - "display": "pllvco", - "location": { - "column": "12", - "line": "3309", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "pllvco", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@122516@F@RCCEx_GetSAIxPeriphCLKFreq@plln", - "What": "Variable", - "defdec": "Dec", - "display": "plln", - "location": { - "column": "20", - "line": "3309", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "plln", - "origin": "project_file", - "scope": null - }, - { - "ID": "c:stm32l4xx_hal_rcc_ex.c@122597@F@RCCEx_GetSAIxPeriphCLKFreq@pllp", - "What": "Variable", - "defdec": "Def", - "display": "pllp", - "location": { - "column": "12", - "line": "3311", - "path": "E:\\Y\\IAR\\stm32l431_xl_current_with_uart\\Drivers\\STM32L4xx_HAL_Driver\\Src\\stm32l4xx_hal_rcc_ex.c" - }, - "name": "pllp", - "origin": "project_file", - "scope": null - }, { "ID": "c:stm32l4xx_hal_uart.c@9150@macro@USART_CR1_FIELDS", "What": "MacroDef", diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi index 03b0d1e..74f1ce0 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part1.pbi differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi index 9e517a8..1cbe8a9 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part2.pbi differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi index 60edf8f..5a3b966 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part3.pbi differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi index 53b44cf..50d9fef 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part4.pbi differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi index 54b47f6..d694a2f 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part5.pbi differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part6.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part6.pbi index b53dfe4..fd48dbb 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part6.pbi and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/STM32L431_XL_CURRENT_V10_part6.pbi differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/build.ninja b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/build.ninja index bced47a..9668583 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/build.ninja +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/build.ninja @@ -90,6 +90,11 @@ build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Br rspfile_name = E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.xcl.rsp xclcommand = -source_file E$:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\system_stm32l4xx.c -xcl_file E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.xcl -macro_file E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.tmp -icc_path "D$:\Program$ Files\IAR$ Systems\arm\bin\iccarm.exe" +build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl : COMPILER_XCL + flags = E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c -D USE_HAL_DRIVER -D STM32L431xx -o E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\e22_1376246393639769861.dir --debug --endian=little --cpu=Cortex-M4 -e --fpu=VFPv4_sp --dlib_config "D$:\Program$ Files\IAR$ Systems\arm\inc\c\DLib_Config_Full.h" -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Core/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Include\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Middlewares/ST/ARM/DSP/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Lib\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ -Ohz -I "D$:\Program$ Files\IAR$ Systems\arm\CMSIS\Core\Include\\" -I "D$:\Program$ Files\IAR$ Systems\arm\CMSIS\DSP\Include\\" -D ARM_MATH_CM4 --predef_macros E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.tmp + rspfile_name = E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl.rsp + xclcommand = -source_file E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c -xcl_file E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl -macro_file E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.tmp -icc_path "D$:\Program$ Files\IAR$ Systems\arm\bin\iccarm.exe" + build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.xcl : COMPILER_XCL flags = E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\RingQueue\ring_queue.c -D USE_HAL_DRIVER -D STM32L431xx -o E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir --debug --endian=little --cpu=Cortex-M4 -e --fpu=VFPv4_sp --dlib_config "D$:\Program$ Files\IAR$ Systems\arm\inc\c\DLib_Config_Full.h" -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Core/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Include\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Middlewares/ST/ARM/DSP/Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Lib\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\ -I E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue\ -Ohz -I "D$:\Program$ Files\IAR$ Systems\arm\CMSIS\Core\Include\\" -I "D$:\Program$ Files\IAR$ Systems\arm\CMSIS\DSP\Include\\" -D ARM_MATH_CM4 --predef_macros E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.tmp rspfile_name = E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.xcl.rsp @@ -249,6 +254,9 @@ build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Br build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi : INDEXER E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.xcl | E$:\Y\IAR\stm32l431_xl_current_with_uart\Core\Src\system_stm32l4xx.c flags = -out=E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi -f E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.xcl +build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi : INDEXER E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl | E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c + flags = -out=E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi -f E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.xcl + build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi : INDEXER E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.xcl | E$:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\RingQueue\ring_queue.c flags = -out=E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi -f E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.xcl @@ -338,36 +346,36 @@ build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Br E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\usart.pbi flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part1.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\gpio.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\main.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\stm32l4xx_hal_msp.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\stm32l4xx_it.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\tim.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\Core_13247989168731456611.dir\usart.pbi -build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi $ +build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi $ + E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.pbi $ - E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.pbi $ - E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.pbi - flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.pbi + E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.pbi + flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\CMSIS_6603591812247902717.dir\system_stm32l4xx.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\ring_queue_4579790358902792442.dir\ring_queue.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_adc_ex.pbi -build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part3.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac_ex.pbi $ +build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part3.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac.pbi $ + E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac_ex.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.pbi $ - E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.pbi $ - E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.pbi - flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part3.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.pbi + E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.pbi + flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part3.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_cortex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dac_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_dma_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_exti.pbi -build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part4.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.pbi $ +build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part4.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.pbi $ + E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.pbi $ - E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.pbi $ - E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.pbi - flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part4.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.pbi + E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.pbi + flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part4.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_flash_ramfunc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_gpio.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_i2c_ex.pbi -build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part5.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.pbi $ +build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part5.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.pbi $ + E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.pbi $ - E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.pbi $ - E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.pbi - flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part5.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.pbi + E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.pbi + flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part5.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_pwr_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_rcc_ex.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_tim_ex.pbi -build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part6.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.pbi - flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part6.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.pbi +build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part6.pbi : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.pbi + flags = -M E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part6.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart.pbi E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L4xx_HAL_Driver_2987639196379523013.dir\stm32l4xx_hal_uart_ex.pbi build E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10.pbd : PDBLINK E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part0.pbi | E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part1.pbi $ E$:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\STM32L431_XL_CURRENT_V10_part2.pbi $ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi new file mode 100644 index 0000000..ab574af Binary files /dev/null and b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi.dep b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi.dep new file mode 100644 index 0000000..e94061f --- /dev/null +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.pbi.dep @@ -0,0 +1,50 @@ +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi: \ + E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c \ + E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\main.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Core\Inc\stm32l4xx_hal_conf.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_def.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\stm32l431xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\core_cm4.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stdint.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ycheck.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\yvals.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Defaults.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Config_Full.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\DLib_Product.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_version.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_compiler.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\cmsis_iccarm.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\aarch32\iccarm_builtin.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Include\mpu_armv7.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\CMSIS\Device\ST\STM32L4xx\Include\system_stm32l4xx.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\stddef.h \ + D:\Program\ Files\IAR\ Systems\arm\inc\c\ysizet.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_rcc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_gpio_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dma.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_cortex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_ll_adc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_adc_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_dac_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_exti.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_flash_ramfunc.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_i2c_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_pwr_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_tim_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\STM32L4xx_HAL_Driver\Inc\stm32l4xx_hal_uart_ex.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\inflash.h \ + E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc\comm_types.h diff --git a/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.xcl b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.xcl new file mode 100644 index 0000000..d2e6214 --- /dev/null +++ b/EWARM/STM32L431_XL_CURRENT_V10/BrowseInfo/e22_1376246393639769861.dir/e22.xcl @@ -0,0 +1,462 @@ +"E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22\e22.c" +-std=c11 +-ferror-limit=0 +-fbracket-depth=512 +-funsigned-char +-MD +-MF +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi.dep +-o +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\BrowseInfo\e22_1376246393639769861.dir\e22.pbi +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\e22 +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Core/Inc +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/STM32L4xx_HAL_Driver/Inc/Legacy +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Device/ST/STM32L4xx/Include +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Drivers/CMSIS/Include +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM/../Middlewares/ST/ARM/DSP/Inc +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Middlewares\ST\ARM\DSP\Lib +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\App\Inc +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\..\Drivers\RingQueue +-I +D:\Program Files\IAR Systems\arm\CMSIS\Core\Include\ +-I +D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include\ +-I +D:\Program Files\IAR Systems\arm\inc\c\aarch32 +-I +D:\Program Files\IAR Systems\arm\inc +-I +D:\Program Files\IAR Systems\arm\inc\c +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Core\Inc +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\STM32L4xx_HAL_Driver\Inc +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\STM32L4xx_HAL_Driver\Inc\Legacy +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\CMSIS\Device\ST\STM32L4xx\Include +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\CMSIS\Include +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Middlewares\ST\ARM\DSP\Inc +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Middlewares\ST\ARM\DSP\Lib +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\App\Inc +-I +E:\Y\IAR\stm32l431_xl_current_with_uart\Drivers\RingQueue +-I +D:\Program Files\IAR Systems\arm\CMSIS\Core\Include +-I +D:\Program Files\IAR Systems\arm\CMSIS\DSP\Include +-D__CHAR_BITS__=8 +-D__CHAR_MAX__=0xff +-D__CHAR_MIN__=0 +-D__CHAR_SIZE__=1 +-D__UNSIGNED_CHAR_MAX__=0xff +-D__SIGNED_CHAR_MAX__=127 +-D__SIGNED_CHAR_MIN__=(-__SIGNED_CHAR_MAX__-1) +-D__CHAR_ALIGN__=1 +-D__SHORT_SIZE__=2 +-D__UNSIGNED_SHORT_MAX__=0xffff +-D__SIGNED_SHORT_MAX__=32767 +-D__SIGNED_SHORT_MIN__=(-__SIGNED_SHORT_MAX__-1) +-D__SHORT_ALIGN__=2 +-D__INT_SIZE__=4 +-D__UNSIGNED_INT_MAX__=0xffffffffU +-D__SIGNED_INT_MAX__=2147483647 +-D__SIGNED_INT_MIN__=(-__SIGNED_INT_MAX__-1) +-D__INT_ALIGN__=4 +-D__LONG_SIZE__=4 +-D__UNSIGNED_LONG_MAX__=0xffffffffUL +-D__SIGNED_LONG_MAX__=2147483647L +-D__SIGNED_LONG_MIN__=(-__SIGNED_LONG_MAX__-1) +-D__LONG_ALIGN__=4 +-D__LONG_LONG_SIZE__=8 +-D__UNSIGNED_LONG_LONG_MAX__=0xffffffffffffffffULL +-D__SIGNED_LONG_LONG_MAX__=9223372036854775807LL +-D__SIGNED_LONG_LONG_MIN__=(-__SIGNED_LONG_LONG_MAX__-1) +-D__LONG_LONG_ALIGN__=8 +-D__INT8_T_TYPE__=signed char +-D__INT8_T_MAX__=127 +-D__INT8_T_MIN__=(-__INT8_T_MAX__-1) +-D__UINT8_T_TYPE__=unsigned char +-D__UINT8_T_MAX__=0xff +-D__INT8_SIZE_PREFIX__="hh" +-D__INT16_T_TYPE__=signed short int +-D__INT16_T_MAX__=32767 +-D__INT16_T_MIN__=(-__INT16_T_MAX__-1) +-D__UINT16_T_TYPE__=unsigned short int +-D__UINT16_T_MAX__=0xffff +-D__INT16_SIZE_PREFIX__="h" +-D__INT32_T_TYPE__=signed int +-D__INT32_T_MAX__=2147483647 +-D__INT32_T_MIN__=(-__INT32_T_MAX__-1) +-D__UINT32_T_TYPE__=unsigned int +-D__UINT32_T_MAX__=0xffffffffU +-D__INT32_SIZE_PREFIX__="" +-D__INT64_T_TYPE__=signed long long int +-D__INT64_T_MAX__=9223372036854775807LL +-D__INT64_T_MIN__=(-__INT64_T_MAX__-1) +-D__UINT64_T_TYPE__=unsigned long long int +-D__UINT64_T_MAX__=0xffffffffffffffffULL +-D__INT64_SIZE_PREFIX__="ll" +-D__INT_LEAST8_T_TYPE__=signed char +-D__INT_LEAST8_T_MAX__=127 +-D__INT_LEAST8_T_MIN__=(-__INT_LEAST8_T_MAX__-1) +-D__UINT_LEAST8_T_TYPE__=unsigned char +-D__UINT_LEAST8_T_MAX__=0xff +-D__INT8_C_SUFFIX__= +-D__UINT8_C_SUFFIX__= +-D__INT_LEAST8_SIZE_PREFIX__="hh" +-D__INT_LEAST16_T_TYPE__=signed short int +-D__INT_LEAST16_T_MAX__=32767 +-D__INT_LEAST16_T_MIN__=(-__INT_LEAST16_T_MAX__-1) +-D__UINT_LEAST16_T_TYPE__=unsigned short int +-D__UINT_LEAST16_T_MAX__=0xffff +-D__INT16_C_SUFFIX__= +-D__UINT16_C_SUFFIX__= +-D__INT_LEAST16_SIZE_PREFIX__="h" +-D__INT_LEAST32_T_TYPE__=signed int +-D__INT_LEAST32_T_MAX__=2147483647 +-D__INT_LEAST32_T_MIN__=(-__INT_LEAST32_T_MAX__-1) +-D__UINT_LEAST32_T_TYPE__=unsigned int +-D__UINT_LEAST32_T_MAX__=0xffffffffU +-D__INT32_C_SUFFIX__= +-D__UINT32_C_SUFFIX__=U +-D__INT_LEAST32_SIZE_PREFIX__="" +-D__INT_LEAST64_T_TYPE__=signed long long int +-D__INT_LEAST64_T_MAX__=9223372036854775807LL +-D__INT_LEAST64_T_MIN__=(-__INT_LEAST64_T_MAX__-1) +-D__UINT_LEAST64_T_TYPE__=unsigned long long int +-D__UINT_LEAST64_T_MAX__=0xffffffffffffffffULL +-D__INT64_C_SUFFIX__=LL +-D__UINT64_C_SUFFIX__=ULL +-D__INT_LEAST64_SIZE_PREFIX__="ll" +-D__INT_FAST8_T_TYPE__=signed int +-D__INT_FAST8_T_MAX__=2147483647 +-D__INT_FAST8_T_MIN__=(-__INT_FAST8_T_MAX__-1) +-D__UINT_FAST8_T_TYPE__=unsigned int +-D__UINT_FAST8_T_MAX__=0xffffffffU +-D__INT_FAST8_SIZE_PREFIX__="" +-D__INT_FAST16_T_TYPE__=signed int +-D__INT_FAST16_T_MAX__=2147483647 +-D__INT_FAST16_T_MIN__=(-__INT_FAST16_T_MAX__-1) +-D__UINT_FAST16_T_TYPE__=unsigned int +-D__UINT_FAST16_T_MAX__=0xffffffffU +-D__INT_FAST16_SIZE_PREFIX__="" +-D__INT_FAST32_T_TYPE__=signed int +-D__INT_FAST32_T_MAX__=2147483647 +-D__INT_FAST32_T_MIN__=(-__INT_FAST32_T_MAX__-1) +-D__UINT_FAST32_T_TYPE__=unsigned int +-D__UINT_FAST32_T_MAX__=0xffffffffU +-D__INT_FAST32_SIZE_PREFIX__="" +-D__INT_FAST64_T_TYPE__=signed long long int +-D__INT_FAST64_T_MAX__=9223372036854775807LL +-D__INT_FAST64_T_MIN__=(-__INT_FAST64_T_MAX__-1) +-D__UINT_FAST64_T_TYPE__=unsigned long long int +-D__UINT_FAST64_T_MAX__=0xffffffffffffffffULL +-D__INT_FAST64_SIZE_PREFIX__="ll" +-D__INTMAX_T_TYPE__=signed long long int +-D__INTMAX_T_MAX__=9223372036854775807LL +-D__INTMAX_T_MIN__=(-__INTMAX_T_MAX__-1) +-D__UINTMAX_T_TYPE__=unsigned long long int +-D__UINTMAX_T_MAX__=0xffffffffffffffffULL +-D__INTMAX_C_SUFFIX__=LL +-D__UINTMAX_C_SUFFIX__=ULL +-D__INTMAX_SIZE_PREFIX__="ll" +-D__ATOMIC_BOOL_LOCK_FREE=2 +-D__ATOMIC_CHAR_LOCK_FREE=2 +-D__ATOMIC_CHAR16_T_LOCK_FREE=2 +-D__ATOMIC_CHAR32_T_LOCK_FREE=2 +-D__ATOMIC_WCHAR_T_LOCK_FREE=2 +-D__ATOMIC_SHORT_LOCK_FREE=2 +-D__ATOMIC_INT_LOCK_FREE=2 +-D__ATOMIC_LONG_LOCK_FREE=2 +-D__ATOMIC_LLONG_LOCK_FREE=0 +-D__ATOMIC_POINTER_LOCK_FREE=2 +-D__FLOAT_SIZE__=4 +-D__FLOAT_ALIGN__=4 +-D__FLT_MANT_DIG__=24 +-D__FLT_DIG__=6 +-D__FLT_DECIMAL_DIG__=9 +-D__FLT_MAX_EXP__=128 +-D__FLT_MIN_EXP__=-125 +-D__FLT_MAX_10_EXP__=38 +-D__FLT_MIN_10_EXP__=-37 +-D__FLT_MAX__=3.40282347E+38 +-D__FLT_MIN__=1.17549435E-38 +-D__FLT_HAS_SUBNORM__=1 +-D__FLT_TRUE_MIN__=1.40129846E-45 +-D__FLT_DENORM_MIN__=1.40129846E-45 +-D__FLT_EPSILON__=1.1920929E-7 +-D__DOUBLE_SIZE__=8 +-D__DOUBLE_ALIGN__=8 +-D__DBL_MANT_DIG__=53 +-D__DBL_DIG__=15 +-D__DBL_DECIMAL_DIG__=17 +-D__DBL_MAX_EXP__=1024 +-D__DBL_MIN_EXP__=-1021 +-D__DBL_MAX_10_EXP__=308 +-D__DBL_MIN_10_EXP__=-307 +-D__DBL_MAX__=1.7976931348623157E+308 +-D__DBL_MIN__=2.2250738585072014E-308 +-D__DBL_HAS_SUBNORM__=1 +-D__DBL_TRUE_MIN__=4.9406564584124654E-324 +-D__DBL_DENORM_MIN__=4.9406564584124654E-324 +-D__DBL_EPSILON__=2.2204460492503131E-16 +-D__LONG_DOUBLE_SIZE__=8 +-D__LONG_DOUBLE_ALIGN__=8 +-D__LDBL_MANT_DIG__=53 +-D__LDBL_DIG__=15 +-D__LDBL_DECIMAL_DIG__=17 +-D__LDBL_MAX_EXP__=1024 +-D__LDBL_MIN_EXP__=-1021 +-D__LDBL_MAX_10_EXP__=308 +-D__LDBL_MIN_10_EXP__=-307 +-D__LDBL_MAX__=1.7976931348623157E+308 +-D__LDBL_MIN__=2.2250738585072014E-308 +-D__LDBL_HAS_SUBNORM__=1 +-D__LDBL_TRUE_MIN__=4.9406564584124654E-324 +-D__LDBL_DENORM_MIN__=4.9406564584124654E-324 +-D__LDBL_EPSILON__=2.2204460492503131E-16 +-D____FP16_SIZE__=2 +-D____FP16_ALIGN__=2 +-D__FLT16_MANT_DIG__=11 +-D__FLT16_DIG__=3 +-D__FLT16_DECIMAL_DIG__=5 +-D__FLT16_MAX_EXP__=16 +-D__FLT16_MIN_EXP__=-13 +-D__FLT16_MAX_10_EXP__=4 +-D__FLT16_MIN_10_EXP__=-4 +-D__FLT16_MAX__=6.5504E+4 +-D__FLT16_MIN__=6.1035E-5 +-D__FLT16_HAS_SUBNORM__=1 +-D__FLT16_TRUE_MIN__=5.9605E-8 +-D__FLT16_DENORM_MIN__=5.9605E-8 +-D__FLT16_EPSILON__=9.7656E-4 +-D___FLOAT16_SIZE__=2 +-D___FLOAT16_ALIGN__=2 +-D__NAN_HAS_HIGH_MANTISSA_BIT_SET__=0 +-D__SUBNORMAL_FLOATING_POINTS__=1 +-D__SIZE_T_TYPE__=unsigned int +-D__SIZE_T_MAX__=0xffffffffU +-D__PTRDIFF_T_TYPE__=signed int +-D__PTRDIFF_T_MAX__=2147483647 +-D__PTRDIFF_T_MIN__=(-__PTRDIFF_T_MAX__-1) +-D__INTPTR_T_TYPE__=signed int +-D__INTPTR_T_MAX__=2147483647 +-D__INTPTR_T_MIN__=(-__INTPTR_T_MAX__-1) +-D__UINTPTR_T_TYPE__=unsigned int +-D__UINTPTR_T_MAX__=0xffffffffU +-D__INTPTR_SIZE_PREFIX__="" +-D__JMP_BUF_ELEMENT_TYPE__=unsigned long long int +-D__JMP_BUF_NUM_ELEMENTS__=16 +-D__TID__=0xcf60 +-D__VER__=9040002 +-D__BUILD_NUMBER__=374 +-D__IAR_SYSTEMS_ICC__=9 +-D_MAX_ALIGNMENT=8 +-D__LITTLE_ENDIAN__=1 +-D__BOOL_TYPE__=unsigned char +-D__BOOL_SIZE__=1 +-D__WCHAR_T_TYPE__=unsigned int +-D__WCHAR_T_SIZE__=4 +-D__WCHAR_T_MAX__=0xffffffffU +-D__DEF_PTR_MEM__=__data +-D__DEF_PTR_SIZE__=4 +-D__DATA_MEM0__=__data +-D__DATA_MEM0_POINTER_OK__=1 +-D__DATA_MEM0_UNIQUE_POINTER__=1 +-D__DATA_MEM0_VAR_OK__=1 +-D__DATA_MEM0_INTPTR_TYPE__=int +-D__DATA_MEM0_UINTPTR_TYPE__=unsigned int +-D__DATA_MEM0_INTPTR_SIZE_PREFIX__="" +-D__DATA_MEM0_MAX_SIZE__=0x7fffffffU +-D_RSIZE_MAX=0x7fffffffU +-D__DATA_MEM0_HEAP_SEGMENT__="HEAP" +-D__DATA_MEM0_PAGE_SIZE__=0 +-D__DATA_MEM0_HEAP__=0 +-D__CODE_MEM0__=__code +-D__CODE_MEM0_POINTER_OK__=1 +-D__CODE_MEM0_UNIQUE_POINTER__=1 +-D__HEAP_MEM0__=0 +-D__HEAP_DEFAULT_MEM__=0 +-D__HEAPND_MEMORY_LIST1__()= +-D__MULTIPLE_HEAPS__=0 +-D__DEF_HEAP_MEM__=__data +-D__DEF_STACK_MEM_INDEX__=0 +-D__PRAGMA_PACK_ON__=1 +-D__MULTIPLE_INHERITANCE__=1 +-D__AAPCS_VFP__=1 +-D__ARM4TM__=4 +-D__ARM5TM__=5 +-D__ARM5T__=5 +-D__ARM5__=5 +-D__ARM6MEDIA__=6 +-D__ARM6M__=11 +-D__ARM6SM__=12 +-D__ARM6T2__=6 +-D__ARM6__=6 +-D__ARM7EM__=13 +-D__ARM7M__=7 +-D__ARM7__=7 +-D__ARMVFPV1__=1 +-D__ARMVFPV2__=2 +-D__ARMVFPV3_D16__=1 +-D__ARMVFPV3_FP16__=1 +-D__ARMVFPV3__=3 +-D__ARMVFPV4__=4 +-D__ARMVFP_D16__=1 +-D__ARMVFP_FP16__=1 +-D__ARMVFP_SP__=1 +-D__ARMVFP__=__ARMVFPV4__ +-D__ARM_32BIT_STATE=1 +-D__ARM_ACLE=201 +-D__ARM_ALIGN_MAX_PWR=8 +-D__ARM_ALIGN_MAX_STACK_PWR=3 +-D__ARM_ARCH=7 +-D__ARM_ARCH_ISA_THUMB=2 +-D__ARM_ARCH_PROFILE='M' +-D__ARM_FEATURE_CLZ=1 +-D__ARM_FEATURE_COPROC=15 +-D__ARM_FEATURE_DSP=1 +-D__ARM_FEATURE_FMA=1 +-D__ARM_FEATURE_IDIV=1 +-D__ARM_FEATURE_LDREX=7 +-D__ARM_FEATURE_MVE=0 +-D__ARM_FEATURE_QBIT=1 +-D__ARM_FEATURE_SAT=1 +-D__ARM_FEATURE_SIMD32=1 +-D__ARM_FEATURE_UNALIGNED=1 +-D__ARM_FP=6 +-D__ARM_FP16_ARGS=1 +-D__ARM_FP16_FORMAT_IEEE=1 +-D__ARM_MEDIA__=1 +-D__ARM_PCS_VFP=1 +-D__ARM_PROFILE_M__=1 +-D__ARM_SIZEOF_MINIMAL_ENUM=1 +-D__ARM_SIZEOF_WCHAR_T=4 +-D__ARM_SIZE_MINIMAL_ENUM=1 +-D__ARM_SIZE_WCHAR_T=4 +-D__CODE_SIZE_LIMIT=0 +-D__CORE__=__ARM7EM__ +-D__CPU_MODE__=1 +-D__ICCARM_INTRINSICS_VERSION__=2 +-D__ICCARM__=1 +-D__INTERWORKING__=1 +-D__thumb__=1 +-D__PLAIN_INT_BITFIELD_IS_SIGNED__=0 +-D__HAS_WEAK__=1 +-D__HAS_PACKED__=1 +-D__HAS_JOINED_TYPES__=1 +-D__HAS_LOCATED_DECLARATION__=1 +-D__HAS_LOCATED_WITH_INIT__=1 +-D__IAR_COMPILERBASE__=0xa0e01 +-D__IAR_COMPILERBASE_STR__=10.14.1.1479 +-D__UNICODE_SOURCE_SUPPORTED__=1 +-D__VTABLE_MEM__= +-D__PRAGMA_REDEFINE_EXTNAME=1 +-D__STDC__=1 +-D__STDC_VERSION__=201710L +-D__STDC_IEC_559__=1 +-D__STDC_IEC_559_COMPLEX__=1 +-D__STDC_NO_VLA__=1 +-D__MEMORY_ORDER_RELAXED__=0 +-D__MEMORY_ORDER_CONSUME__=1 +-D__MEMORY_ORDER_ACQUIRE__=2 +-D__MEMORY_ORDER_RELEASE__=3 +-D__MEMORY_ORDER_ACQ_REL__=4 +-D__MEMORY_ORDER_SEQ_CST__=5 +-D__STDC_UTF_16__=1 +-D__STDC_UTF_32__=1 +-D__STDC_LIB_EXT1__=201112L +-D__STDC_NO_THREADS__=1 +-D__STDC_ISO_10646__=201103L +-D__STDC_HOSTED__=1 +-D__EDG_IA64_ABI=1 +-D__EDG_IA64_ABI_VARIANT_CTORS_AND_DTORS_RETURN_THIS=1 +-D__EDG_IA64_ABI_USE_INT_STATIC_INIT_GUARD=1 +-D__cpp_designated_initializers=201707L +-D__cpp_hex_float=201603L +-D__cpp_binary_literals=201304L +-D__cpp_unicode_literals=200710L +-D__cpp_static_assert=200410L +-D__EDG__=1 +-D__EDG_VERSION__=603 +-D__EDG_SIZE_TYPE__=unsigned int +-D__EDG_PTRDIFF_TYPE__=int +-D__EDG_DELTA_TYPE=int +-D__EDG_IA64_VTABLE_ENTRY_TYPE=int +-D__EDG_VIRTUAL_FUNCTION_INDEX_TYPE=unsigned short +-D__EDG_LOWER_VARIABLE_LENGTH_ARRAYS=1 +-D__EDG_IA64_ABI_USE_VARIANT_ARRAY_COOKIES=1 +-D__EDG_ABI_COMPATIBILITY_VERSION=9999 +-D__EDG_ABI_CHANGES_FOR_RTTI=1 +-D__EDG_ABI_CHANGES_FOR_ARRAY_NEW_AND_DELETE=1 +-D__EDG_ABI_CHANGES_FOR_PLACEMENT_DELETE=1 +-D__EDG_BSD=0 +-D__EDG_SYSV=0 +-D__EDG_ANSIC=1 +-D__EDG_CPP11_IL_EXTENSIONS_SUPPORTED=1 +-D__EDG_FLOAT80_ENABLING_POSSIBLE=0 +-D__EDG_FLOAT128_ENABLING_POSSIBLE=0 +-D__EDG_INT128_EXTENSIONS_ALLOWED=0 +-DUSE_HAL_DRIVER=1 +-DSTM32L431xx=1 +-DARM_MATH_CM4=1 +-D_DLIB_CONFIG_FILE_HEADER_NAME="D:\Program Files\IAR Systems\arm\inc\c\DLib_Config_Full.h" +-D_DLIB_CONFIG_FILE_STRING="D:\\Program Files\\IAR Systems\\arm\\inc\\c\\DLib_Config_Full.h" +-D__VERSION__="IAR ANSI C/C++ Compiler V9.40.2.374/W64 for ARM" +-D_VA_DEFINED= +-D_VA_LIST=struct __va_list +-D__ICCARM_OLD_DEFINED_VAARGS__=1 +-D__VA_STACK_ALIGN__=8 +-D__CODE_MEMORY_LIST1__()=__CODE_MEM_HELPER1__(__code, 0 ) +-D__CODE_MEMORY_LIST2__(_P1)=__CODE_MEM_HELPER2__(__code, 0 , _P1 ) +-D__CODE_MEMORY_LIST3__(_P1,_P2)=__CODE_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) +-D__DATA_MEMORY_LIST1__()=__DATA_MEM_HELPER1__(__data, 0 ) +-D__DATA_MEMORY_LIST2__(_P1)=__DATA_MEM_HELPER2__(__data, 0 , _P1 ) +-D__DATA_MEMORY_LIST3__(_P1,_P2)=__DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) +-D__CODE_PTR_MEMORY_LIST1__()=__CODE_PTR_MEM_HELPER1__(__code, 0 ) +-D__CODE_PTR_MEMORY_LIST2__(_P1)=__CODE_PTR_MEM_HELPER2__(__code, 0 , _P1 ) +-D__CODE_PTR_MEMORY_LIST3__(_P1,_P2)=__CODE_PTR_MEM_HELPER3__(__code, 0 , _P1 , _P2 ) +-D__DATA_PTR_MEMORY_LIST1__()=__DATA_PTR_MEM_HELPER1__(__data, 0 ) +-D__DATA_PTR_MEMORY_LIST2__(_P1)=__DATA_PTR_MEM_HELPER2__(__data, 0 , _P1 ) +-D__DATA_PTR_MEMORY_LIST3__(_P1,_P2)=__DATA_PTR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) +-D__VAR_MEMORY_LIST1__()=__VAR_MEM_HELPER1__(__data, 0 ) +-D__VAR_MEMORY_LIST2__(_P1)=__VAR_MEM_HELPER2__(__data, 0 , _P1 ) +-D__VAR_MEMORY_LIST3__(_P1,_P2)=__VAR_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) +-D__VARD_MEMORY_LIST1__()=__VARD_MEM_HELPER1__(__data, 0, _ ) +-D__HEAP_MEMORY_LIST1__()=__HEAP_MEM_HELPER1__(__data, 0 ) +-D__HEAP_MEMORY_LIST2__(_P1)=__HEAP_MEM_HELPER2__(__data, 0 , _P1 ) +-D__HEAP_MEMORY_LIST3__(_P1,_P2)=__HEAP_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) +-D__HVAR_MEMORY_LIST1__()=__HVAR_MEM_HELPER1__(__data, 0 ) +-D__HEAPD_MEMORY_LIST1__()=__HEAPD_MEM_HELPER1__(__data, 0, _ ) +-D__HEAPU_MEMORY_LIST1__()=__HEAPU_MEM_HELPER1__(__data, 0 ) +-D__TOPM_DATA_MEMORY_LIST1__()= +-D__TOPM_DATA_MEMORY_LIST2__(_P1)= +-D__TOPM_DATA_MEMORY_LIST3__(_P1,_P2)= +-D__TOPP_DATA_MEMORY_LIST1__()=__TOPP_DATA_MEM_HELPER1__(__data, 0 ) +-D__TOPP_DATA_MEMORY_LIST2__(_P1)=__TOPP_DATA_MEM_HELPER2__(__data, 0 , _P1 ) +-D__TOPP_DATA_MEMORY_LIST3__(_P1,_P2)=__TOPP_DATA_MEM_HELPER3__(__data, 0 , _P1 , _P2 ) +-D__DATA_MEM0_SIZE_TYPE__=unsigned int +-D__DATA_MEM0_INDEX_TYPE__=signed int +-D__iar_fp2bits32(x)=0 +-D__iar_fp2bits64(x)=0 +-D__iar_fpgethi64(x)=0 +-D__iar_atomic_add_fetch(x,y,z)=0 +-D__iar_atomic_sub_fetch(x,y,z)=0 +-D__iar_atomic_load(x,y)=0ULL +-D__iar_atomic_compare_exchange_weak(a,b,c,d,e)=0 diff --git a/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.hex b/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.hex index 9bee210..71801b3 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.hex +++ b/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.hex @@ -7693,9 +7693,9 @@ :10E0A0004FF4007000F0FDFB7F21204601F0EAFBF9 :10E0B0000021284600F094FD00230022002128467C :10E0C00000F0BDFDFFF7AAFE4FF480520F49204D2E -:10E0D000204601F00DFD1F48214C02F010F80121EF -:10E0E000002002F089F8286802F037FA206802F070 -:10E0F00034FAF4E7D8D100200000303F66660A40C9 +:10E0D000204601F00DFD1F48214C02F010F8286881 +:10E0E00002F019FA206802F016FA0121002002F06D +:10E0F0008BFAF4E7D8D100200000303F66660A4072 :10E1000000D0814000005940A0010020C0710020D3 :10E11000C0B100200000003B0000144000409F40C0 :10E12000000000000000303F0000000000C8A940CF @@ -8224,76 +8224,76 @@ :1001C000CB6813434A6923F0800313430360B042B2 :1001D0008B68C3620A6882621CBFA842A04201D138 :1001E000096901630122426170BD0000002C0140D9 -:1001F000004401400040014010B50C460D49002864 -:10020000086805D1810507D5FEF75DFB20B110BD5B -:10021000810558BFFEF751FB0748016821F0040132 -:10022000012C016001D130BF10BD40BF20BF20BFF5 -:1002300010BD00001470004010ED00E0BFF34F8FC0 -:10024000DFF8B013DFF8B0030A6802F4E06202439B -:100250000A60BFF34F8F00BFFDE730B503464FF68E -:10026000FF70002400E0641CE2B28A4211D213F84D -:10027000012B5040082205046D0C00F001000128FC -:10028000B2BF284685F4204080F00100521EF2D112 -:10029000E9E730BDDFF8640390ED000A03E0DFF822 -:1002A0005C0390ED010ABDEEC00A10EE101A0804BE -:1002B000000E40EA012080B27047DFF8400390ED65 -:1002C000020AF0E7DFF8340390ED030AEBE7DFF80A -:1002D0002C0390ED040AE6E7DFF8200390ED050A11 -:1002E000E1E7E0B5C649008848700522684605E0A8 -:1002F000E0B50088C249488068460522FAF702FE48 -:10030000DDE9000100F024FE00200EBD80B500886C -:10031000012800D108E0002002BD80B50088012836 -:1003200000D101E0002002BD012181F31388FFF715 -:1003300085FF00BF80B50088012800D1F4E70020C8 -:1003400002BDF8B50446AF4F15461E463221384669 -:1003500000F016FEAA4A5078387003217970BE70FA -:1003600032462946F81CFAF7CDFDB978C91CC9B246 -:100370003846FFF772FFF91C885339462046BA7891 -:10038000BDE8F840521D00F02FBE00002DE9F041FD -:1003900005468878CE784C7946EA0026087944EA02 -:1003A0000024A6F109000B2801D3182E02DB3146E8 -:1003B0009BA00AE03CB13019A0F10A010B2902D33D -:1003C000401E182805DB21469BA0BDE8F04100F047 -:1003D00038BEDFF83482C821404600F037F90027E4 -:1003E00007E0002002E051680020884728F8170045 -:1003F0007F1CA7420EDAB919002082B208EBC202B4 -:10040000CBB252F8C8CF6345EDD0401C82B2062A69 -:10041000F3D3E6E77D48016864008D4205D1A3B2BD -:10042000424603212846FFF78CFF794801688D4238 -:1004300006D1A3B242462846BDE8F041032180E739 -:10044000BDE8F0812DE9F8410F469BB00646B8782B -:10045000FC787D7944EA00243879A4F11401092953 -:1004600045EA002502D321466DA006E01DB16019C2 -:100470001538092804D329466FA000F0E2FD41E0B9 -:10048000642102A800F0E2F8002009E007EB400137 -:10049000CA79097A41EA022102AA22F81010401C06 -:1004A000A842F3DB5648DFF86C8141788DF80010E4 -:1004B000042178788DF801008DF802408DF8035002 -:1004C0006846FFF7CAFE8DF804000622000A8DF880 -:1004D00005006946304600F087FD002710E0002641 -:1004E00058F836003919884206D102AA08EBC6012D -:1004F00002EB47004A689047761C052EF0D37F1C1C -:10050000AF42ECDB1CB0BDE8F081F8B50D461646F5 -:10051000044606F1FE01C9B22846FFF79EFEA9195E -:1005200011F8022D497842EA0122904214D16878EC -:10053000032818BF10280FD10026374F687857F8C6 -:100540003610884205D107EBC6022946536820467B -:100550009847761C022EF1D3F1BD78B58DB00546D3 -:1005600000F051FD002843D01420FEF711FB2B4C66 -:100570003221204600F06AF80026284600F050FD9F -:10058000A055761C312EF8D31D494B780020225CF3 -:100590009A4205D1621C125C032A18BF102A03D0AC -:1005A000401C3128F3D323E0312821D0C0F131069B -:1005B000211832466846FAF7A5FC31220021204670 -:1005C000FAF7A0FC324669462046FAF79BFC9DF8F4 -:1005D0000100032808BF082206D0102808D19DF882 -:1005E00006205200093203DD21462846FFF78DFF21 -:1005F0000EB070BD0CED00E00400FA05D0F600204E -:1006000030010020A4F5002010000020D8F10020C7 -:1006100008F3002008010020000000209CF60020C4 -:1006200073746172745F7265675F61646472206580 -:1006300072726F723A2564007265675F6E756D2025 -:100640006572726F723A256400000000002200F0AB +:1001F0000044014000400140BFF34F8FDFF8B013CF +:10020000DFF8B0030A6802F4E06202430A60BFF359 +:100210004F8F00BFFDE730B503464FF6FF70002457 +:1002200000E0641CE2B28A4211D213F8012B504064 +:10023000082205046D0C00F001000128B2BF284619 +:1002400085F4204080F00100521EF2D1E9E730BD74 +:10025000DFF8640390ED000A03E0DFF85C0390ED43 +:10026000010ABDEEC00A10EE101A0804000E40EAA2 +:10027000012080B27047DFF8400390ED020AF0E7FA +:10028000DFF8340390ED030AEBE7DFF82C0390ED81 +:10029000040AE6E7DFF8200390ED050AE1E7E0B5A0 +:1002A000C649008848700522684605E0E0B5008828 +:1002B000C249488068460522FAF724FEDDE90001BC +:1002C00000F046FE00200EBD80B50088012800D158 +:1002D00008E0002002BD80B50088012800D101E0BF +:1002E000002002BD012181F31388FFF785FF00BFC5 +:1002F00080B50088012800D1F4E7002002BDF8B5E0 +:100300000446AF4F15461E463221384600F038FEEF +:10031000AA4A5078387003217970BE703246294657 +:10032000F81CFAF7EFFDB978C91CC9B23846FFF7D7 +:1003300072FFF91C885339462046BA78BDE8F84068 +:10034000521D00F051BE00002DE9F04105468878AD +:10035000CE784C7946EA0026087944EA0024A6F1D2 +:1003600009000B2801D3182E02DB31469BA00AE0BE +:100370003CB13019A0F10A010B2902D3401E182804 +:1003800005DB21469BA0BDE8F04100F05ABEDFF836 +:100390003482C821404600F059F9002707E00020C8 +:1003A00002E051680020884728F817007F1CA74208 +:1003B0000EDAB919002082B208EBC202CBB252F8B1 +:1003C000C8CF6345EDD0401C82B2062AF3D3E6E7DE +:1003D0007D48016864008D4205D1A3B242460321E5 +:1003E0002846FFF78CFF794801688D4206D1A3B2F9 +:1003F00042462846BDE8F041032180E7BDE8F08190 +:100400002DE9F8410F469BB00646B878FC787D7917 +:1004100044EA00243879A4F11401092945EA0025A9 +:1004200002D321466DA006E01DB1601915380928D8 +:1004300004D329466FA000F004FE41E0642102A825 +:1004400000F004F9002009E007EB4001CA79097ABD +:1004500041EA022102AA22F81010401CA842F3DB54 +:100460005648DFF86C8141788DF8001004217878C7 +:100470008DF801008DF802408DF803506846FFF7B3 +:10048000CAFE8DF804000622000A8DF805006946B0 +:10049000304600F0A9FD002710E0002658F836008D +:1004A0003919884206D102AA08EBC60102EB4700BF +:1004B0004A689047761C052EF0D37F1CAF42ECDBD8 +:1004C0001CB0BDE8F081F8B50D461646044606F1AD +:1004D000FE01C9B22846FFF79EFEA91911F8022DA8 +:1004E000497842EA0122904214D16878032818BF63 +:1004F00010280FD10026374F687857F836108842F9 +:1005000005D107EBC6022946536820469847761C5A +:10051000022EF1D3F1BD78B58DB0054600F073FD24 +:10052000002843D01420FEF733FB2B4C3221204609 +:1005300000F08CF80026284600F072FDA055761CCD +:10054000312EF8D31D494B780020225C9A4205D108 +:10055000621C125C032A18BF102A03D0401C3128E9 +:10056000F3D323E0312821D0C0F1310621183246DF +:100570006846FAF7C7FC312200212046FAF7C2FC90 +:10058000324669462046FAF7BDFC9DF80100032873 +:1005900008BF082206D0102808D19DF80620520076 +:1005A000093203DD21462846FFF78DFF0EB070BDEE +:1005B0000CED00E00400FA05D0F600203001002028 +:1005C000A4F5002010000020D8F1002008F300203E +:1005D00008010020000000209CF600207374617266 +:1005E000745F7265675F61646472206572726F72B6 +:1005F0003A2564007265675F6E756D206572726F73 +:10060000723A25640000000010B50C460D49002820 +:10061000086805D1810507D5FEF755F920B110BD51 +:10062000810558BFFEF749F90748016821F0040128 +:10063000012C016001D130BF10BD40BF20BF20BFE1 +:1006400010BD00001470004010ED00E0002200F02A :1006500015BD000062F30F2262F31F42401810F034 :10066000030308D0C91A1FD3DB0748BF00F8012DC8 :1006700028BF20F8022D130030B414461546103957 @@ -9290,7 +9290,7 @@ :10446000CEF20001086840F470000860BFF34F8F7F :10447000BFF36F8F4FF00170E1EE100A704700003C :1044800025FFFFFF6CF50000A001002000000000E8 -:104490000769FFFF18020000F8000000000000207C +:104490000769FFFF18020000F6000000000000207E :1044A0000248016841F470010160704788ED00E046 :1044B00000000000000000000102030406070809D4 :1044C00000F00DF8002801D0FFF7B4FFAFF3008033 @@ -9324,13 +9324,13 @@ :10468000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF5E :10469000FFF7FEBFFFF7FEBFFFF7FEBFFFF7FEBF4E :1046A000FFF7FEBFFFF7FEBFFFF7FEBF10070300D7 -:1046B00000008D0302081008F003BA450402080048 -:1046C0000110039502020801D1129F08120208127C -:1046D000BB0821F012C50812040812CF0812050801 -:1046E00012D908121F0812E30812200812F108124A -:1046F0002108160D18122208121B08122308123561 -:1047000008100355300000160C560129F60210312E -:10471000E20114F00507093D002EB101080452FF23 -:0847200001E3AAAE140300003E +:1046B0000000490302081008F003BA0104020800D0 +:1046C0000110035102020801D1125B081202081204 +:1046D000770821F0128108120408128B08120508CD +:1046E000129508121F08129F0812200812AD081216 +:1046F000210812C90812220812D70812230812F141 +:1047000008240355300000162C5529F6021031E21A +:104710000114F00507093D002EB101080452FF0104 +:07472000E3AAAE1403000040 :04000005080244F5B4 :00000001FF diff --git a/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out b/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out index dce5fd3..2de3645 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out and b/EWARM/STM32L431_XL_CURRENT_V10/Exe/STM32L431_XL_CURRENT_V10.out differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/List/STM32L431_XL_CURRENT_V10.map b/EWARM/STM32L431_XL_CURRENT_V10/List/STM32L431_XL_CURRENT_V10.map index d56dd80..018be32 100644 --- a/EWARM/STM32L431_XL_CURRENT_V10/List/STM32L431_XL_CURRENT_V10.map +++ b/EWARM/STM32L431_XL_CURRENT_V10/List/STM32L431_XL_CURRENT_V10.map @@ -1,6 +1,6 @@ ############################################################################### # -# IAR ELF Linker V9.40.2.374/W64 for ARM 15/Jul/2024 17:01:45 +# IAR ELF Linker V9.40.2.374/W64 for ARM 16/Jul/2024 09:28:34 # Copyright 2007-2023 IAR Systems AB. # # Output file = @@ -13,6 +13,7 @@ # (E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir\adc.o # E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir\dac.o # E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir\dma.o +# E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\e22_1376246393639769861.dir\e22.o # E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\APP_7160814934950161391.dir\frt_protocol.o # E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir\gpio.o # E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\APP_7160814934950161391.dir\inflash.o @@ -99,43 +100,43 @@ initialize by copy { rw }; .intvec ro code 0x800'0000 0x18c startup_stm32l431xx.o [4] - 0x800'018c 0x18c -"P1": 0x2'459c - .rodata const 0x800'018c 0x8000 arm_common_tables.o [8] - .rodata const 0x800'818c 0x4000 arm_common_tables.o [8] - .rodata const 0x800'c18c 0x4000 arm_common_tables.o [8] - .rodata const 0x801'018c 0x2000 arm_common_tables.o [8] - .rodata const 0x801'218c 0x2000 arm_common_tables.o [8] - .rodata const 0x801'418c 0x1f80 arm_common_tables.o [8] - .rodata const 0x801'610c 0x1dc0 arm_common_tables.o [8] - .rodata const 0x801'7ecc 0x1000 arm_common_tables.o [8] - .rodata const 0x801'8ecc 0x1000 arm_common_tables.o [8] - .text ro code 0x801'9ecc 0xeca xprintffull_nomb.o [7] - .text ro code 0x801'ad96 0x7e lz77_init_single.o [10] - .text ro code 0x801'ae14 0x16 strchr.o [10] - .text ro code 0x801'ae2a 0xa xsprout.o [7] - .text ro code 0x801'ae34 0x40 xfail_s.o [7] - .text ro code 0x801'ae74 0x36 strlen.o [10] - .rodata const 0x801'aeaa 0x2 xlocale_c.o [7] - .text ro code 0x801'aeac 0x58 memchr.o [10] - .text ro code 0x801'af04 0x18 ABImemcpy_small.o [10] - .text ro code 0x801'af1c 0x70 frexp.o [9] - .text ro code 0x801'af8c 0x34 DblCmpLe.o [9] - .text ro code 0x801'afc0 0x34 DblCmpGe.o [9] - .text ro code 0x801'aff4 0x13a ldexp.o [9] - .rodata const 0x801'b12e 0x1 xlocale_c.o [7] - .text ro code 0x801'b130 0x36 DblToS32.o [9] - .text ro code 0x801'b168 0x22 S32ToDbl.o [9] - .text ro code 0x801'b18c 0x25e DblAddSub.o [9] - .text ro code 0x801'b3ec 0x246 DblDiv.o [9] - .text ro code 0x801'b634 0x22 DblToU32.o [9] - .text ro code 0x801'b658 0x1c U32ToDbl.o [9] - .text ro code 0x801'b674 0x1aa DblMul.o [9] - .text ro code 0x801'b820 0x8 xlocale_c.o [7] - .text ro code 0x801'b828 0x106 I64DivMod_small.o [10] - .text ro code 0x801'b92e 0x6 abort.o [7] - .text ro code 0x801'b934 0x2 I64DivZer.o [10] - .text ro code 0x801'b938 0x14 exit.o [11] - .rodata const 0x801'b94c 0xe10 arm_common_tables.o [8] +"P1": 0x2'459b + .rodata const 0x800'018c 0x8000 arm_common_tables.o [9] + .rodata const 0x800'818c 0x4000 arm_common_tables.o [9] + .rodata const 0x800'c18c 0x4000 arm_common_tables.o [9] + .rodata const 0x801'018c 0x2000 arm_common_tables.o [9] + .rodata const 0x801'218c 0x2000 arm_common_tables.o [9] + .rodata const 0x801'418c 0x1f80 arm_common_tables.o [9] + .rodata const 0x801'610c 0x1dc0 arm_common_tables.o [9] + .rodata const 0x801'7ecc 0x1000 arm_common_tables.o [9] + .rodata const 0x801'8ecc 0x1000 arm_common_tables.o [9] + .text ro code 0x801'9ecc 0xeca xprintffull_nomb.o [8] + .text ro code 0x801'ad96 0x7e lz77_init_single.o [11] + .text ro code 0x801'ae14 0x16 strchr.o [11] + .text ro code 0x801'ae2a 0xa xsprout.o [8] + .text ro code 0x801'ae34 0x40 xfail_s.o [8] + .text ro code 0x801'ae74 0x36 strlen.o [11] + .rodata const 0x801'aeaa 0x2 xlocale_c.o [8] + .text ro code 0x801'aeac 0x58 memchr.o [11] + .text ro code 0x801'af04 0x18 ABImemcpy_small.o [11] + .text ro code 0x801'af1c 0x70 frexp.o [10] + .text ro code 0x801'af8c 0x34 DblCmpLe.o [10] + .text ro code 0x801'afc0 0x34 DblCmpGe.o [10] + .text ro code 0x801'aff4 0x13a ldexp.o [10] + .rodata const 0x801'b12e 0x1 xlocale_c.o [8] + .text ro code 0x801'b130 0x36 DblToS32.o [10] + .text ro code 0x801'b168 0x22 S32ToDbl.o [10] + .text ro code 0x801'b18c 0x25e DblAddSub.o [10] + .text ro code 0x801'b3ec 0x246 DblDiv.o [10] + .text ro code 0x801'b634 0x22 DblToU32.o [10] + .text ro code 0x801'b658 0x1c U32ToDbl.o [10] + .text ro code 0x801'b674 0x1aa DblMul.o [10] + .text ro code 0x801'b820 0x8 xlocale_c.o [8] + .text ro code 0x801'b828 0x106 I64DivMod_small.o [11] + .text ro code 0x801'b92e 0x6 abort.o [8] + .text ro code 0x801'b934 0x2 I64DivZer.o [11] + .text ro code 0x801'b938 0x14 exit.o [12] + .rodata const 0x801'b94c 0xe10 arm_common_tables.o [9] .text ro code 0x801'c75c 0xa94 stm32l4xx_hal_uart.o [5] .text ro code 0x801'd1f0 0x150 usart.o [3] .text ro code 0x801'd340 0xc stm32l4xx_hal.o [5] @@ -147,24 +148,24 @@ initialize by copy { rw }; .text ro code 0x801'd60c 0x734 stm32l4xx_hal_rcc.o [5] .text ro code 0x801'dd40 0x2 stm32l4xx_hal_uart.o [5] .text ro code 0x801'dd44 0x482 main.o [3] - .text ro code 0x801'e1c6 0x14 memset.o [10] + .text ro code 0x801'e1c6 0x14 memset.o [11] .text ro code 0x801'e1dc 0x37c stm32l4xx_hal_rcc_ex.o [5] .text ro code 0x801'e558 0x1d4 stm32l4xx_hal_gpio.o [5] .text ro code 0x801'e72c 0xc4 stm32l4xx_hal_cortex.o [5] .text ro code 0x801'e7f0 0x44 stm32l4xx_hal.o [5] .text ro code 0x801'e834 0xdc stm32l4xx_hal_pwr_ex.o [5] - .text ro code 0x801'e910 0x48 FltToDbl.o [9] - .text ro code 0x801'e958 0x68 DblToFlt.o [9] - .text ro code 0x801'e9c0 0x1d0 cos_sin32.o [9] + .text ro code 0x801'e910 0x48 FltToDbl.o [10] + .text ro code 0x801'e958 0x68 DblToFlt.o [10] + .text ro code 0x801'e9c0 0x1d0 cos_sin32.o [10] .text ro code 0x801'eb90 0x28 stm32l4xx_hal.o [5] .text ro code 0x801'ebb8 0x1ca stm32l4xx_hal_dac.o [5] - .text ro code 0x801'ed84 0x18a arm_rfft_fast_f32.o [8] - .text ro code 0x801'ef10 0x158 arm_cmplx_mag_f32.o [8] - .text ro code 0x801'f068 0xd2 arm_scale_f32.o [8] - .text ro code 0x801'f13c 0xb6 arm_max_f32.o [8] - .text ro code 0x801'f1f4 0xc0 arm_rms_f32.o [8] + .text ro code 0x801'ed84 0x18a arm_rfft_fast_f32.o [9] + .text ro code 0x801'ef10 0x158 arm_cmplx_mag_f32.o [9] + .text ro code 0x801'f068 0xd2 arm_scale_f32.o [9] + .text ro code 0x801'f13c 0xb6 arm_max_f32.o [9] + .text ro code 0x801'f1f4 0xc0 arm_rms_f32.o [9] .text ro code 0x801'f2b4 0x1e stm32l4xx_hal.o [5] - .text ro code 0x801'f2d4 0x1bc arm_rfft_fast_init_f32.o [8] + .text ro code 0x801'f2d4 0x1bc arm_rfft_fast_init_f32.o [9] .text ro code 0x801'f490 0x13a gpio.o [3] .text ro code 0x801'f5cc 0x30 dma.o [3] .text ro code 0x801'f5fc 0x16c adc.o [3] @@ -173,66 +174,66 @@ initialize by copy { rw }; .text ro code 0x801'f884 0x94 stm32l4xx_hal_adc_ex.o [5] .text ro code 0x801'f918 0x7ca stm32l4xx_hal_adc.o [5] .text ro code 0x802'00e4 0x114 stm32l4xx_hal_tim.o [5] - .text ro code 0x802'01f8 0x44 stm32l4xx_hal_pwr.o [5] - .text ro code 0x802'023c 0x410 frt_protocol.o [1] - .text ro code 0x802'064c 0x6 ABImemclr4.o [10] - .text ro code 0x802'0654 0x66 ABImemset.o [10] - .text ro code 0x802'06bc 0x704 arm_cfft_f32.o [8] + .text ro code 0x802'01f8 0x410 frt_protocol.o [1] + .text ro code 0x802'0608 0x44 stm32l4xx_hal_pwr.o [5] + .text ro code 0x802'064c 0x6 ABImemclr4.o [11] + .text ro code 0x802'0654 0x66 ABImemset.o [11] + .text ro code 0x802'06bc 0x704 arm_cfft_f32.o [9] .text ro code 0x802'0dc0 0x30 stm32l4xx_hal_msp.o [3] - .text ro code 0x802'0df0 0x98 arm_cfft_init_f32.o [8] + .text ro code 0x802'0df0 0x98 arm_cfft_init_f32.o [9] .text ro code 0x802'0e88 0x64 stm32l4xx_hal_tim_ex.o [5] .text ro code 0x802'0eec 0x2 stm32l4xx_hal_adc.o [5] .text ro code 0x802'0eee 0x2 stm32l4xx_hal_adc.o [5] .text ro code 0x802'0ef0 0x90 inflash.o [1] - .text ro code 0x802'0f80 0x6 ABImemclr.o [10] + .text ro code 0x802'0f80 0x6 ABImemclr.o [11] .text ro code 0x802'0f88 0xf4 uart_dev.o [1] - .text ro code 0x802'107c 0x32 ABImemset48.o [10] - .text ro code 0x802'10b0 0x5a2 arm_cfft_radix8_f32.o [8] - .text ro code 0x802'1652 0x44 arm_bitreversal2.o [8] + .text ro code 0x802'107c 0x32 ABImemset48.o [11] + .text ro code 0x802'10b0 0x5a2 arm_cfft_radix8_f32.o [9] + .text ro code 0x802'1652 0x44 arm_bitreversal2.o [9] .text ro code 0x802'1698 0x170 stm32l4xx_hal_flash_ex.o [5] - .text ro code 0x802'1808 0x1c strrchr.o [7] + .text ro code 0x802'1808 0x1c strrchr.o [8] .text ro code 0x802'1824 0x168 stm32l4xx_hal_flash.o [5] - .text ro code 0x802'198c 0x5e ring_queue.o [6] - .text ro code 0x802'19ec 0x34 vsprintf.o [7] - .rodata const 0x802'1a20 0x800 arm_common_tables.o [8] - .rodata const 0x802'2220 0x800 arm_common_tables.o [8] - .rodata const 0x802'2a20 0x400 arm_common_tables.o [8] - .rodata const 0x802'2e20 0x400 arm_common_tables.o [8] - .rodata const 0x802'3220 0x380 arm_common_tables.o [8] - .rodata const 0x802'35a0 0x370 arm_common_tables.o [8] - .rodata const 0x802'3910 0x200 arm_common_tables.o [8] - .rodata const 0x802'3b10 0x200 arm_common_tables.o [8] - .rodata const 0x802'3d10 0x1a0 arm_common_tables.o [8] - .rodata const 0x802'3eb0 0x100 arm_common_tables.o [8] - .rodata const 0x802'3fb0 0x100 arm_common_tables.o [8] + .text ro code 0x802'198c 0x5e ring_queue.o [7] + .text ro code 0x802'19ec 0x34 vsprintf.o [8] + .rodata const 0x802'1a20 0x800 arm_common_tables.o [9] + .rodata const 0x802'2220 0x800 arm_common_tables.o [9] + .rodata const 0x802'2a20 0x400 arm_common_tables.o [9] + .rodata const 0x802'2e20 0x400 arm_common_tables.o [9] + .rodata const 0x802'3220 0x380 arm_common_tables.o [9] + .rodata const 0x802'35a0 0x370 arm_common_tables.o [9] + .rodata const 0x802'3910 0x200 arm_common_tables.o [9] + .rodata const 0x802'3b10 0x200 arm_common_tables.o [9] + .rodata const 0x802'3d10 0x1a0 arm_common_tables.o [9] + .rodata const 0x802'3eb0 0x100 arm_common_tables.o [9] + .rodata const 0x802'3fb0 0x100 arm_common_tables.o [9] .text ro code 0x802'40b0 0xb0 stm32l4xx_it.o [3] .text ro code 0x802'4160 0x10 stm32l4xx_hal.o [5] - .rodata const 0x802'4170 0x80 arm_common_tables.o [8] - .rodata const 0x802'41f0 0x80 arm_common_tables.o [8] - .rodata const 0x802'4270 0x70 arm_common_tables.o [8] + .rodata const 0x802'4170 0x80 arm_common_tables.o [9] + .rodata const 0x802'41f0 0x80 arm_common_tables.o [9] + .rodata const 0x802'4270 0x70 arm_common_tables.o [9] .rodata const 0x802'42e0 0x64 inflash.o [1] - .rodata const 0x802'4344 0x60 arm_common_tables.o [8] - .text ro code 0x802'43a4 0x38 zero_init3.o [10] + .rodata const 0x802'4344 0x60 arm_common_tables.o [9] + .text ro code 0x802'43a4 0x38 zero_init3.o [11] .rodata const 0x802'43dc 0x30 system_stm32l4xx.o [2] - .rodata const 0x802'440c 0x28 arm_common_tables.o [8] - .text ro code 0x802'4434 0x28 data_init.o [10] - .text ro code 0x802'445c 0x22 fpinit_M.o [9] + .rodata const 0x802'440c 0x28 arm_common_tables.o [9] + .text ro code 0x802'4434 0x28 data_init.o [11] + .text ro code 0x802'445c 0x22 fpinit_M.o [10] .iar.init_table const 0x802'4480 0x20 - Linker created - .text ro code 0x802'44a0 0x20 system_stm32l4xx.o [2] - .text ro code 0x802'44c0 0x1e cmain.o [10] - .text ro code 0x802'44de 0x4 low_level_init.o [7] - .text ro code 0x802'44e2 0x4 exit.o [7] - .text ro code 0x802'44e8 0xa cexit.o [10] - .text ro code 0x802'44f4 0x1c cstartup_M.o [10] - .rodata const 0x802'4510 0x10 arm_const_structs.o [8] - .rodata const 0x802'4520 0x10 arm_const_structs.o [8] - .rodata const 0x802'4530 0x10 arm_const_structs.o [8] - .rodata const 0x802'4540 0x10 arm_const_structs.o [8] - .rodata const 0x802'4550 0x10 arm_const_structs.o [8] - .rodata const 0x802'4560 0x10 arm_const_structs.o [8] - .rodata const 0x802'4570 0x10 arm_const_structs.o [8] - .rodata const 0x802'4580 0x10 arm_const_structs.o [8] - .rodata const 0x802'4590 0x10 arm_const_structs.o [8] + .text ro code 0x802'44c0 0x1e cmain.o [11] + .text ro code 0x802'44de 0x4 low_level_init.o [8] + .text ro code 0x802'44e2 0x4 exit.o [8] + .text ro code 0x802'44e8 0xa cexit.o [11] + .text ro code 0x802'44f4 0x1c cstartup_M.o [11] + .rodata const 0x802'4510 0x10 arm_const_structs.o [9] + .rodata const 0x802'4520 0x10 arm_const_structs.o [9] + .rodata const 0x802'4530 0x10 arm_const_structs.o [9] + .rodata const 0x802'4540 0x10 arm_const_structs.o [9] + .rodata const 0x802'4550 0x10 arm_const_structs.o [9] + .rodata const 0x802'4560 0x10 arm_const_structs.o [9] + .rodata const 0x802'4570 0x10 arm_const_structs.o [9] + .rodata const 0x802'4580 0x10 arm_const_structs.o [9] + .rodata const 0x802'4590 0x10 arm_const_structs.o [9] .text ro code 0x802'45a0 0x10 startup_stm32l431xx.o [4] .rodata const 0x802'45b0 0x8 system_stm32l4xx.o [2] .text ro code 0x802'45b8 0x4 startup_stm32l431xx.o [4] @@ -296,10 +297,10 @@ initialize by copy { rw }; .text ro code 0x802'46a0 0x4 startup_stm32l431xx.o [4] .text ro code 0x802'46a4 0x4 startup_stm32l431xx.o [4] .text ro code 0x802'46a8 0x4 startup_stm32l431xx.o [4] - .rodata const 0x802'46ac 0x0 zero_init3.o [10] - .rodata const 0x802'46ac 0x0 lz77_init_single.o [10] - Initializer bytes const 0x802'46ac 0x7c - - 0x802'4728 0x2'459c + .rodata const 0x802'46ac 0x0 zero_init3.o [11] + .rodata const 0x802'46ac 0x0 lz77_init_single.o [11] + Initializer bytes const 0x802'46ac 0x7b + - 0x802'4727 0x2'459b "P2", part 1 of 3: 0x1a0 P2-1 0x2000'0000 0x1a0 @@ -310,7 +311,7 @@ initialize by copy { rw }; .data inited 0x2000'0138 0xc stm32l4xx_hal.o [5] .data inited 0x2000'0144 0x20 stm32l4xx_hal_flash.o [5] .data inited 0x2000'0164 0x4 system_stm32l4xx.o [2] - .data inited 0x2000'0168 0x38 xlocale_c.o [7] + .data inited 0x2000'0168 0x38 xlocale_c.o [8] - 0x2000'01a0 0x1a0 "P2", part 2 of 3: 0xf56c @@ -330,7 +331,7 @@ initialize by copy { rw }; .bss zero 0x2000'f6d0 0x18 frt_protocol.o [1] .bss zero 0x2000'f6e8 0x14 dac.o [3] .bss zero 0x2000'f6fc 0x8 main.o [3] - .bss zero 0x2000'f704 0x4 xfail_s.o [7] + .bss zero 0x2000'f704 0x4 xfail_s.o [8] .bss zero 0x2000'f708 0x1 usart.o [3] .bss zero 0x2000'f709 0x1 usart.o [3] - 0x2000'f70a 0xf56a @@ -344,7 +345,7 @@ Unused ranges: From To Size ---- -- ---- - 0x802'4728 0x803'ffff 0x1'b8d8 + 0x802'4727 0x803'ffff 0x1'b8d9 0x2000'f70c 0x2000'f70f 0x4 0x2000'fb10 0x2000'ffff 0x4f0 @@ -360,8 +361,8 @@ Zero (__iar_zero_init3) 0x2000'01a0 0xf56a Copy/lz77 (__iar_lz77_init_single3) - 1 source range, total size 0x7c (29% of destination): - 0x802'46ac 0x7c + 1 source range, total size 0x7b (29% of destination): + 0x802'46ac 0x7b 1 destination range, total size 0x1a0: 0x2000'0000 0x1a0 @@ -378,11 +379,11 @@ command line/config: Total: E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\APP_7160814934950161391.dir: [1] - frt_protocol.o 1'040 90 380 + frt_protocol.o 1'040 89 380 inflash.o 144 103 8 uart_dev.o 244 708 --------------------------------------------------- - Total: 1'428 193 1'096 + Total: 1'428 192 1'096 E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\CMSIS_6603591812247902717.dir: [2] system_stm32l4xx.o 32 57 4 @@ -428,12 +429,16 @@ E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\STM32 --------------------------------------------------- Total: 10'974 13 44 -E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir: [6] +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\e22_1376246393639769861.dir: [6] + --------------------------------------------------- + Total: + +E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir: [7] ring_queue.o 94 --------------------------------------------------- Total: 94 -dl7M_tlf.a: [7] +dl7M_tlf.a: [8] abort.o 6 exit.o 4 low_level_init.o 4 @@ -446,7 +451,7 @@ dl7M_tlf.a: [7] --------------------------------------------------- Total: 3'962 20 60 -iar_cortexM4lf_math.a: [8] +iar_cortexM4lf_math.a: [9] arm_bitreversal2.o 68 arm_cfft_f32.o 1'796 arm_cfft_init_f32.o 152 @@ -462,7 +467,7 @@ iar_cortexM4lf_math.a: [8] --------------------------------------------------- Total: 5'224 119'912 -m7M_tls.a: [9] +m7M_tls.a: [10] DblAddSub.o 606 DblCmpGe.o 52 DblCmpLe.o 52 @@ -481,7 +486,7 @@ m7M_tls.a: [9] --------------------------------------------------- Total: 2'968 -rt7M_tl.a: [10] +rt7M_tl.a: [11] ABImemclr.o 6 ABImemclr4.o 6 ABImemcpy_small.o 24 @@ -502,7 +507,7 @@ rt7M_tl.a: [10] --------------------------------------------------- Total: 926 -shb_l.a: [11] +shb_l.a: [12] exit.o 20 --------------------------------------------------- Total: 20 @@ -510,7 +515,7 @@ shb_l.a: [11] Gaps 51 2 Linker created 32 1'024 ------------------------------------------------------- - Grand Total: 29'059 120'229 64'266 + Grand Total: 29'059 120'228 64'266 ******************************************************************************* @@ -521,7 +526,7 @@ Entry Address Size Type Object ----- ------- ---- ---- ------ .iar.init_table$$Base 0x802'4480 -- Gb - Linker created - .iar.init_table$$Limit 0x802'44a0 -- Gb - Linker created - -?main 0x802'44c1 Code Gb cmain.o [10] +?main 0x802'44c1 Code Gb cmain.o [11] ADC1_IRQHandler 0x802'45fd Code Wk startup_stm32l431xx.o [4] ADC_DMAConvCplt 0x802'0059 0x6c Code Gb stm32l4xx_hal_adc.o [5] ADC_DMAError 0x802'00cd 0x16 Code Gb stm32l4xx_hal_adc.o [5] @@ -536,7 +541,7 @@ CAN1_RX1_IRQHandler 0x802'4609 Code Wk startup_stm32l431xx.o [4] CAN1_SCE_IRQHandler 0x802'460d Code Wk startup_stm32l431xx.o [4] CAN1_TX_IRQHandler 0x802'4601 Code Wk startup_stm32l431xx.o [4] COMP_IRQHandler 0x802'4671 Code Wk startup_stm32l431xx.o [4] -CRC16 0x802'025b 0x3a Code Gb frt_protocol.o [1] +CRC16 0x802'0217 0x3a Code Gb frt_protocol.o [1] CRS_IRQHandler 0x802'46a9 Code Wk startup_stm32l431xx.o [4] CSTACK$$Base 0x2000'f710 -- Gb - Linker created - CSTACK$$Limit 0x2000'fb10 -- Gb - Linker created - @@ -589,24 +594,24 @@ FLASH_Program_Fast 0x802'1945 0x26 Code Lc stm32l4xx_hal_flash.o [5] FLASH_WaitForLastOperation 0x802'18e3 0x4a Code Gb stm32l4xx_hal_flash.o [5] FPU_IRQHandler 0x802'46a5 Code Wk startup_stm32l431xx.o [4] -FRT_MsgHandler 0x802'050b 0x50 Code Gb frt_protocol.o [1] +FRT_MsgHandler 0x802'04c7 0x50 Code Gb frt_protocol.o [1] FRT_MsgProc_ReadRegister - 0x802'038d 0xb8 Code Lc frt_protocol.o [1] + 0x802'0349 0xb8 Code Lc frt_protocol.o [1] FRT_MsgProc_ReadRegister::reg_value_buff 0x2000'0010 0xc8 Data Lc frt_protocol.o [1] FRT_MsgProc_WriteRegister - 0x802'0445 0xc6 Code Lc frt_protocol.o [1] -FRT_ReadRegBat_Charge 0x802'02cf 0xa Code Lc frt_protocol.o [1] -FRT_ReadRegBat_V 0x802'02c5 0xa Code Lc frt_protocol.o [1] -FRT_ReadRegCurrent 0x802'0295 0xa Code Lc frt_protocol.o [1] -FRT_ReadRegMACINFO 0x802'02d9 0xa Code Lc frt_protocol.o [1] -FRT_ReadRegMaxCurrent 0x802'029f 0x8 Code Lc frt_protocol.o [1] -FRT_ReadRegPulseCount 0x802'02bb 0xa Code Lc frt_protocol.o [1] -FRT_WriteRegDeviceAddr 0x802'02e3 0xe Code Lc frt_protocol.o [1] -FRT_WriteRegMaxCurrent 0x802'030d 0xe Code Lc frt_protocol.o [1] -FRT_WriteRegNetId 0x802'02f1 0xc Code Lc frt_protocol.o [1] -FRT_WriteRegPulseCount 0x802'031b 0xe Code Lc frt_protocol.o [1] -FRT_WriteRegReboot 0x802'0335 0xe Code Lc frt_protocol.o [1] + 0x802'0401 0xc6 Code Lc frt_protocol.o [1] +FRT_ReadRegBat_Charge 0x802'028b 0xa Code Lc frt_protocol.o [1] +FRT_ReadRegBat_V 0x802'0281 0xa Code Lc frt_protocol.o [1] +FRT_ReadRegCurrent 0x802'0251 0xa Code Lc frt_protocol.o [1] +FRT_ReadRegMACINFO 0x802'0295 0xa Code Lc frt_protocol.o [1] +FRT_ReadRegMaxCurrent 0x802'025b 0x8 Code Lc frt_protocol.o [1] +FRT_ReadRegPulseCount 0x802'0277 0xa Code Lc frt_protocol.o [1] +FRT_WriteRegDeviceAddr 0x802'029f 0xe Code Lc frt_protocol.o [1] +FRT_WriteRegMaxCurrent 0x802'02c9 0xe Code Lc frt_protocol.o [1] +FRT_WriteRegNetId 0x802'02ad 0xc Code Lc frt_protocol.o [1] +FRT_WriteRegPulseCount 0x802'02d7 0xe Code Lc frt_protocol.o [1] +FRT_WriteRegReboot 0x802'02f1 0xe Code Lc frt_protocol.o [1] HAL_ADCEx_Calibration_Start 0x801'f885 0x8a Code Gb stm32l4xx_hal_adc_ex.o [5] HAL_ADC_ConfigChannel 0x801'fb99 0x2f6 Code Gb stm32l4xx_hal_adc.o [5] @@ -654,7 +659,7 @@ HAL_PWREx_EnableLowPowerRunMode 0x801'e8bb 0xc Code Gb stm32l4xx_hal_pwr_ex.o [5] HAL_PWREx_GetVoltageRange 0x801'e835 0xc Code Gb stm32l4xx_hal_pwr_ex.o [5] -HAL_PWR_EnterSLEEPMode 0x802'01f9 0x3a Code Gb stm32l4xx_hal_pwr.o [5] +HAL_PWR_EnterSLEEPMode 0x802'0609 0x3a Code Gb stm32l4xx_hal_pwr.o [5] HAL_RCCEx_PeriphCLKConfig 0x801'e1dd 0x252 Code Gb stm32l4xx_hal_rcc_ex.o [5] HAL_RCC_ClockConfig 0x801'daa1 0xfa Code Gb stm32l4xx_hal_rcc.o [5] @@ -692,7 +697,7 @@ I2C3_ER_IRQHandler 0x802'4691 Code Wk startup_stm32l431xx.o [4] I2C3_EV_IRQHandler 0x802'468d Code Wk startup_stm32l431xx.o [4] InFlash_Erase_Pages 0x802'0ef1 0x36 Code Gb inflash.o [1] InFlash_Write 0x802'0f27 0x2a Code Gb inflash.o [1] -InRingQueue 0x802'198d 0x2e Code Gb ring_queue.o [6] +InRingQueue 0x802'198d 0x2e Code Gb ring_queue.o [7] LL_ADC_GetOffsetChannel 0x801'f919 0xe Code Lc stm32l4xx_hal_adc.o [5] LL_ADC_REG_IsTriggerSourceSWStart @@ -714,7 +719,7 @@ MX_USART3_UART_Init 0x801'd201 0x10 Code Gb usart.o [3] Max_rms_10uA 0x2000'11a2 0x2 Data Gb main.o [3] MemManage_Handler 0x802'40b5 0x2 Code Gb stm32l4xx_it.o [3] NMI_Handler 0x802'40b1 0x2 Code Gb stm32l4xx_it.o [3] -OutRingQueue 0x802'19bb 0x22 Code Gb ring_queue.o [6] +OutRingQueue 0x802'19bb 0x22 Code Gb ring_queue.o [7] PVD_PVM_IRQHandler 0x802'45bd Code Wk startup_stm32l431xx.o [4] PendSV_Handler 0x802'40bf 0x2 Code Gb stm32l4xx_it.o [3] Pulse_Count 0x2000'11a4 0x2 Data Gb main.o [3] @@ -771,129 +776,129 @@ UsageFault_Handler 0x802'40b9 0x2 Code Gb stm32l4xx_it.o [3] V50hz_mA 0x2000'51ac 0x4 Data Gb main.o [3] Vdc 0x2000'51a8 0x4 Data Gb main.o [3] WWDG_IRQHandler 0x802'45b9 Code Wk startup_stm32l431xx.o [4] -_LC 0x801'9ecd 0x6 Code Lc xprintffull_nomb.o [7] -_LitobFullNoMb 0x801'abb5 0x114 Code Lc xprintffull_nomb.o [7] -_Locale_lconv 0x2000'0168 0x38 Data Lc xlocale_c.o [7] -_PrintfFullNoMb 0x801'9ed3 0xcb2 Code Gb xprintffull_nomb.o [7] -_PutcharsFullNoMb 0x801'ad21 0x2e Code Lc xprintffull_nomb.o [7] -_SProut 0x801'ae2b 0xa Code Gb xsprout.o [7] +_LC 0x801'9ecd 0x6 Code Lc xprintffull_nomb.o [8] +_LitobFullNoMb 0x801'abb5 0x114 Code Lc xprintffull_nomb.o [8] +_Locale_lconv 0x2000'0168 0x38 Data Lc xlocale_c.o [8] +_PrintfFullNoMb 0x801'9ed3 0xcb2 Code Gb xprintffull_nomb.o [8] +_PutcharsFullNoMb 0x801'ad21 0x2e Code Lc xprintffull_nomb.o [8] +_SProut 0x801'ae2b 0xa Code Gb xsprout.o [8] __NVIC_SetPriority 0x801'e72d 0x1a Code Lc stm32l4xx_hal_cortex.o [5] -__NVIC_SystemReset 0x802'023d 0x1e Code Lc frt_protocol.o [1] -__aeabi_cdcmple 0x801'af8d Code Gb DblCmpLe.o [9] -__aeabi_cdrcmple 0x801'afc1 Code Gb DblCmpGe.o [9] -__aeabi_d2f 0x801'e959 Code Gb DblToFlt.o [9] -__aeabi_d2iz 0x801'b131 Code Gb DblToS32.o [9] -__aeabi_d2uiz 0x801'b635 Code Gb DblToU32.o [9] -__aeabi_dadd 0x801'b18d Code Gb DblAddSub.o [9] -__aeabi_ddiv 0x801'b3ed Code Gb DblDiv.o [9] -__aeabi_dmul 0x801'b675 Code Gb DblMul.o [9] -__aeabi_dsub 0x801'b309 Code Gb DblAddSub.o [9] -__aeabi_f2d 0x801'e911 Code Gb FltToDbl.o [9] -__aeabi_i2d 0x801'b169 Code Gb S32ToDbl.o [9] -__aeabi_ldiv0 0x801'b935 Code Gb I64DivZer.o [10] -__aeabi_memclr 0x802'0f81 Code Gb ABImemclr.o [10] -__aeabi_memclr4 0x802'064d Code Gb ABImemclr4.o [10] -__aeabi_memset 0x802'0655 Code Gb ABImemset.o [10] -__aeabi_ui2d 0x801'b659 Code Gb U32ToDbl.o [9] -__cmain 0x802'44c1 Code Gb cmain.o [10] -__exit 0x801'b939 0x14 Code Gb exit.o [11] -__iar_Fail_s 0x801'ae35 0x1c Code Gb xfail_s.o [7] -__iar_Memchr 0x801'aead Code Gb memchr.o [10] -__iar_Memset 0x802'0655 Code Gb ABImemset.o [10] -__iar_Memset4_word 0x802'107d Code Gb ABImemset48.o [10] -__iar_Memset8_word 0x802'107d Code Gb ABImemset48.o [10] -__iar_Memset_word 0x802'065d Code Gb ABImemset.o [10] -__iar_Sin32 0x801'e9c1 0x18c Code Lc cos_sin32.o [9] -__iar_Strchr 0x801'ae15 Code Gb strchr.o [10] -__iar_cos32 0x801'eb8d 0x4 Code Gb cos_sin32.o [9] -__iar_cos_medium32 0x801'eb8d 0x4 Code Gb cos_sin32.o [9] -__iar_cos_mediumf 0x801'eb8d 0x4 Code Gb cos_sin32.o [9] -__iar_data_init3 0x802'4435 0x28 Code Gb data_init.o [10] -__iar_frexp 0x801'af29 Code Gb frexp.o [9] -__iar_frexpl 0x801'af29 Code Gb frexp.o [9] -__iar_init_vfp 0x802'445d Code Gb fpinit_M.o [9] -__iar_ldexp64 0x801'aff5 Code Gb ldexp.o [9] +__NVIC_SystemReset 0x802'01f9 0x1e Code Lc frt_protocol.o [1] +__aeabi_cdcmple 0x801'af8d Code Gb DblCmpLe.o [10] +__aeabi_cdrcmple 0x801'afc1 Code Gb DblCmpGe.o [10] +__aeabi_d2f 0x801'e959 Code Gb DblToFlt.o [10] +__aeabi_d2iz 0x801'b131 Code Gb DblToS32.o [10] +__aeabi_d2uiz 0x801'b635 Code Gb DblToU32.o [10] +__aeabi_dadd 0x801'b18d Code Gb DblAddSub.o [10] +__aeabi_ddiv 0x801'b3ed Code Gb DblDiv.o [10] +__aeabi_dmul 0x801'b675 Code Gb DblMul.o [10] +__aeabi_dsub 0x801'b309 Code Gb DblAddSub.o [10] +__aeabi_f2d 0x801'e911 Code Gb FltToDbl.o [10] +__aeabi_i2d 0x801'b169 Code Gb S32ToDbl.o [10] +__aeabi_ldiv0 0x801'b935 Code Gb I64DivZer.o [11] +__aeabi_memclr 0x802'0f81 Code Gb ABImemclr.o [11] +__aeabi_memclr4 0x802'064d Code Gb ABImemclr4.o [11] +__aeabi_memset 0x802'0655 Code Gb ABImemset.o [11] +__aeabi_ui2d 0x801'b659 Code Gb U32ToDbl.o [10] +__cmain 0x802'44c1 Code Gb cmain.o [11] +__exit 0x801'b939 0x14 Code Gb exit.o [12] +__iar_Fail_s 0x801'ae35 0x1c Code Gb xfail_s.o [8] +__iar_Memchr 0x801'aead Code Gb memchr.o [11] +__iar_Memset 0x802'0655 Code Gb ABImemset.o [11] +__iar_Memset4_word 0x802'107d Code Gb ABImemset48.o [11] +__iar_Memset8_word 0x802'107d Code Gb ABImemset48.o [11] +__iar_Memset_word 0x802'065d Code Gb ABImemset.o [11] +__iar_Sin32 0x801'e9c1 0x18c Code Lc cos_sin32.o [10] +__iar_Strchr 0x801'ae15 Code Gb strchr.o [11] +__iar_cos32 0x801'eb8d 0x4 Code Gb cos_sin32.o [10] +__iar_cos_medium32 0x801'eb8d 0x4 Code Gb cos_sin32.o [10] +__iar_cos_mediumf 0x801'eb8d 0x4 Code Gb cos_sin32.o [10] +__iar_data_init3 0x802'4435 0x28 Code Gb data_init.o [11] +__iar_frexp 0x801'af29 Code Gb frexp.o [10] +__iar_frexpl 0x801'af29 Code Gb frexp.o [10] +__iar_init_vfp 0x802'445d Code Gb fpinit_M.o [10] +__iar_ldexp64 0x801'aff5 Code Gb ldexp.o [10] __iar_lz77_init_single3 - 0x801'ad97 0x7e Code Gb lz77_init_single.o [10] -__iar_program_start 0x802'44f5 Code Gb cstartup_M.o [10] -__iar_scalbln64 0x801'aff5 Code Gb ldexp.o [9] -__iar_scalbn64 0x801'aff5 Code Gb ldexp.o [9] -__iar_small_Memcpy 0x801'af09 Code Gb ABImemcpy_small.o [10] -__iar_small_memcpy 0x801'af05 Code Gb ABImemcpy_small.o [10] -__iar_small_memcpy4 0x801'af05 Code Gb ABImemcpy_small.o [10] -__iar_small_memcpy8 0x801'af05 Code Gb ABImemcpy_small.o [10] -__iar_small_uldivmod 0x801'b829 Code Gb I64DivMod_small.o [10] + 0x801'ad97 0x7e Code Gb lz77_init_single.o [11] +__iar_program_start 0x802'44f5 Code Gb cstartup_M.o [11] +__iar_scalbln64 0x801'aff5 Code Gb ldexp.o [10] +__iar_scalbn64 0x801'aff5 Code Gb ldexp.o [10] +__iar_small_Memcpy 0x801'af09 Code Gb ABImemcpy_small.o [11] +__iar_small_memcpy 0x801'af05 Code Gb ABImemcpy_small.o [11] +__iar_small_memcpy4 0x801'af05 Code Gb ABImemcpy_small.o [11] +__iar_small_memcpy8 0x801'af05 Code Gb ABImemcpy_small.o [11] +__iar_small_uldivmod 0x801'b829 Code Gb I64DivMod_small.o [11] __iar_softfp___iar_frexp64 - 0x801'af1d Code Gb frexp.o [9] -__iar_softfp_frexp 0x801'af1d Code Gb frexp.o [9] -__iar_softfp_frexpl 0x801'af1d Code Gb frexp.o [9] -__iar_zero_init3 0x802'43a5 0x38 Code Gb zero_init3.o [10] -__low_level_init 0x802'44df 0x4 Code Gb low_level_init.o [7] + 0x801'af1d Code Gb frexp.o [10] +__iar_softfp_frexp 0x801'af1d Code Gb frexp.o [10] +__iar_softfp_frexpl 0x801'af1d Code Gb frexp.o [10] +__iar_zero_init3 0x802'43a5 0x38 Code Gb zero_init3.o [11] +__low_level_init 0x802'44df 0x4 Code Gb low_level_init.o [8] __vector_table 0x800'0000 Data Gb startup_stm32l431xx.o [4] -_call_main 0x802'44cd Code Gb cmain.o [10] -_exit 0x802'44e9 Code Gb cexit.o [10] -abort 0x801'b92f 0x6 Code Gb abort.o [7] +_call_main 0x802'44cd Code Gb cmain.o [11] +_exit 0x802'44e9 Code Gb cexit.o [11] +abort 0x801'b92f 0x6 Code Gb abort.o [8] adc_bat_data 0x2000'd1d8 0x2000 Data Gb main.o [3] adc_value 0x2000'71c0 0x4000 Data Gb main.o [3] armBitRevIndexTable1024 - 0x801'b94c 0xe10 Data Gb arm_common_tables.o [8] -armBitRevIndexTable128 0x802'3d10 0x1a0 Data Gb arm_common_tables.o [8] -armBitRevIndexTable16 0x802'440c 0x28 Data Gb arm_common_tables.o [8] + 0x801'b94c 0xe10 Data Gb arm_common_tables.o [9] +armBitRevIndexTable128 0x802'3d10 0x1a0 Data Gb arm_common_tables.o [9] +armBitRevIndexTable16 0x802'440c 0x28 Data Gb arm_common_tables.o [9] armBitRevIndexTable2048 - 0x801'610c 0x1dc0 Data Gb arm_common_tables.o [8] -armBitRevIndexTable256 0x802'35a0 0x370 Data Gb arm_common_tables.o [8] -armBitRevIndexTable32 0x802'4344 0x60 Data Gb arm_common_tables.o [8] + 0x801'610c 0x1dc0 Data Gb arm_common_tables.o [9] +armBitRevIndexTable256 0x802'35a0 0x370 Data Gb arm_common_tables.o [9] +armBitRevIndexTable32 0x802'4344 0x60 Data Gb arm_common_tables.o [9] armBitRevIndexTable4096 - 0x801'418c 0x1f80 Data Gb arm_common_tables.o [8] -armBitRevIndexTable512 0x802'3220 0x380 Data Gb arm_common_tables.o [8] -armBitRevIndexTable64 0x802'4270 0x70 Data Gb arm_common_tables.o [8] -arm_bitreversal_32 0x802'1653 0x44 Code Gb arm_bitreversal2.o [8] -arm_cfft_f32 0x802'0c3d 0x184 Code Gb arm_cfft_f32.o [8] -arm_cfft_init_f32 0x802'0df1 0x98 Code Gb arm_cfft_init_f32.o [8] -arm_cfft_radix8by2_f32 0x802'06bd 0x16a Code Gb arm_cfft_f32.o [8] -arm_cfft_radix8by4_f32 0x802'0829 0x412 Code Gb arm_cfft_f32.o [8] + 0x801'418c 0x1f80 Data Gb arm_common_tables.o [9] +armBitRevIndexTable512 0x802'3220 0x380 Data Gb arm_common_tables.o [9] +armBitRevIndexTable64 0x802'4270 0x70 Data Gb arm_common_tables.o [9] +arm_bitreversal_32 0x802'1653 0x44 Code Gb arm_bitreversal2.o [9] +arm_cfft_f32 0x802'0c3d 0x184 Code Gb arm_cfft_f32.o [9] +arm_cfft_init_f32 0x802'0df1 0x98 Code Gb arm_cfft_init_f32.o [9] +arm_cfft_radix8by2_f32 0x802'06bd 0x16a Code Gb arm_cfft_f32.o [9] +arm_cfft_radix8by4_f32 0x802'0829 0x412 Code Gb arm_cfft_f32.o [9] arm_cfft_sR_f32_len1024 - 0x802'4570 0x10 Data Gb arm_const_structs.o [8] -arm_cfft_sR_f32_len128 0x802'4540 0x10 Data Gb arm_const_structs.o [8] -arm_cfft_sR_f32_len16 0x802'4510 0x10 Data Gb arm_const_structs.o [8] + 0x802'4570 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len128 0x802'4540 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len16 0x802'4510 0x10 Data Gb arm_const_structs.o [9] arm_cfft_sR_f32_len2048 - 0x802'4580 0x10 Data Gb arm_const_structs.o [8] -arm_cfft_sR_f32_len256 0x802'4550 0x10 Data Gb arm_const_structs.o [8] -arm_cfft_sR_f32_len32 0x802'4520 0x10 Data Gb arm_const_structs.o [8] + 0x802'4580 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len256 0x802'4550 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len32 0x802'4520 0x10 Data Gb arm_const_structs.o [9] arm_cfft_sR_f32_len4096 - 0x802'4590 0x10 Data Gb arm_const_structs.o [8] -arm_cfft_sR_f32_len512 0x802'4560 0x10 Data Gb arm_const_structs.o [8] -arm_cfft_sR_f32_len64 0x802'4530 0x10 Data Gb arm_const_structs.o [8] -arm_cmplx_mag_f32 0x801'ef11 0x158 Code Gb arm_cmplx_mag_f32.o [8] + 0x802'4590 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len512 0x802'4560 0x10 Data Gb arm_const_structs.o [9] +arm_cfft_sR_f32_len64 0x802'4530 0x10 Data Gb arm_const_structs.o [9] +arm_cmplx_mag_f32 0x801'ef11 0x158 Code Gb arm_cmplx_mag_f32.o [9] arm_hanning_f32 0x801'ddc1 0x5c Code Gb main.o [3] -arm_max_f32 0x801'f13d 0xb6 Code Gb arm_max_f32.o [8] +arm_max_f32 0x801'f13d 0xb6 Code Gb arm_max_f32.o [9] arm_radix8_butterfly_f32 - 0x802'10b1 0x5a2 Code Gb arm_cfft_radix8_f32.o [8] + 0x802'10b1 0x5a2 Code Gb arm_cfft_radix8_f32.o [9] arm_rfft_1024_fast_init_f32 - 0x801'f385 0x26 Code Lc arm_rfft_fast_init_f32.o [8] + 0x801'f385 0x26 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_128_fast_init_f32 - 0x801'f319 0x22 Code Lc arm_rfft_fast_init_f32.o [8] + 0x801'f319 0x22 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_2048_fast_init_f32 - 0x801'f3ab 0x26 Code Lc arm_rfft_fast_init_f32.o [8] + 0x801'f3ab 0x26 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_256_fast_init_f32 - 0x801'f33b 0x24 Code Lc arm_rfft_fast_init_f32.o [8] + 0x801'f33b 0x24 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_32_fast_init_f32 - 0x801'f2d5 0x22 Code Lc arm_rfft_fast_init_f32.o [8] + 0x801'f2d5 0x22 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_4096_fast_init_f32 - 0x801'f3d1 0x26 Code Lc arm_rfft_fast_init_f32.o [8] + 0x801'f3d1 0x26 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_512_fast_init_f32 - 0x801'f35f 0x26 Code Lc arm_rfft_fast_init_f32.o [8] + 0x801'f35f 0x26 Code Lc arm_rfft_fast_init_f32.o [9] arm_rfft_64_fast_init_f32 - 0x801'f2f7 0x22 Code Lc arm_rfft_fast_init_f32.o [8] -arm_rfft_fast_f32 0x801'eed5 0x3a Code Gb arm_rfft_fast_f32.o [8] -arm_rfft_fast_init_f32 0x801'f3f7 0x5a Code Gb arm_rfft_fast_init_f32.o [8] -arm_rms_f32 0x801'f1f5 0xc0 Code Gb arm_rms_f32.o [8] -arm_scale_f32 0x801'f069 0xd2 Code Gb arm_scale_f32.o [8] + 0x801'f2f7 0x22 Code Lc arm_rfft_fast_init_f32.o [9] +arm_rfft_fast_f32 0x801'eed5 0x3a Code Gb arm_rfft_fast_f32.o [9] +arm_rfft_fast_init_f32 0x801'f3f7 0x5a Code Gb arm_rfft_fast_init_f32.o [9] +arm_rms_f32 0x801'f1f5 0xc0 Code Gb arm_rms_f32.o [9] +arm_scale_f32 0x801'f069 0xd2 Code Gb arm_scale_f32.o [9] bat_v 0x2000'f700 0x4 Data Gb main.o [3] bat_v_get 0x801'dd45 0x7a Code Gb main.o [3] batteryVoltage_mV 0x2000'f6fc 0x2 Data Gb main.o [3] -cosf 0x801'eb8d 0x4 Code Gb cos_sin32.o [9] -exit 0x802'44e3 0x4 Code Gb exit.o [7] +cosf 0x801'eb8d 0x4 Code Gb cos_sin32.o [10] +exit 0x802'44e3 0x4 Code Gb exit.o [8] fft_mag 0x2000'01a0 0x1000 Data Gb main.o [3] fft_outdata 0x2000'51bc 0x2000 Data Gb main.o [3] fft_rawdata 0x2000'31a8 0x2000 Data Gb main.o [3] @@ -910,20 +915,20 @@ hdma_adc1 0x2000'f654 0x48 Data Gb adc.o [3] htim6 0x2000'f608 0x4c Data Gb tim.o [3] huart1 0x2000'f438 0x84 Data Gb usart.o [3] huart3 0x2000'f4bc 0x84 Data Gb usart.o [3] -ldexp 0x801'aff5 Code Gb ldexp.o [9] -ldexpl 0x801'aff5 Code Gb ldexp.o [9] -localeconv 0x801'b821 0x4 Code Gb xlocale_c.o [7] +ldexp 0x801'aff5 Code Gb ldexp.o [10] +ldexpl 0x801'aff5 Code Gb ldexp.o [10] +localeconv 0x801'b821 0x4 Code Gb xlocale_c.o [8] lora_in_buff 0x2000'f30c 0x12c Data Lc uart_dev.o [1] lora_out_buff 0x2000'f5a4 0x64 Data Gb uart_dev.o [1] main 0x801'e04d 0xa8 Code Gb main.o [3] main_freq 0x2000'51b0 0x4 Data Gb main.o [3] max_val 0x2000'71bc 0x4 Data Gb main.o [3] -memchr 0x801'aead Code Gb memchr.o [10] -memset 0x801'e1c7 0x14 Code Gb memset.o [10] -merge_rfft_f32 0x801'ee31 0xa4 Code Gb arm_rfft_fast_f32.o [8] +memchr 0x801'aead Code Gb memchr.o [11] +memset 0x801'e1c7 0x14 Code Gb memset.o [11] +merge_rfft_f32 0x801'ee31 0xa4 Code Gb arm_rfft_fast_f32.o [9] pFlash 0x2000'0144 0x20 Data Gb stm32l4xx_hal_flash.o [5] read_and_process_uart_data - 0x802'055b 0x9a Code Gb frt_protocol.o [1] + 0x802'0517 0x9a Code Gb frt_protocol.o [1] result_data 0x2000'11a8 0x2000 Data Gb main.o [3] rms_10uA 0x2000'11a0 0x2 Data Gb main.o [3] rms_mA 0x2000'51b8 0x4 Data Gb main.o [3] @@ -932,37 +937,37 @@ rs485_buff 0x2000'f69c 0x34 Data Lc frt_protocol.o [1] rx_uart1_buf 0x2000'f708 0x1 Data Gb usart.o [3] rx_uart3_buf 0x2000'f709 0x1 Data Gb usart.o [3] save_config_info 0x802'0f51 0x4 Code Gb inflash.o [1] -scalbln 0x801'aff5 Code Gb ldexp.o [9] -scalblnl 0x801'aff5 Code Gb ldexp.o [9] -scalbn 0x801'aff5 Code Gb ldexp.o [9] -scalbnl 0x801'aff5 Code Gb ldexp.o [9] -scale 0x801'acc9 0x46 Code Lc xprintffull_nomb.o [7] -sec_hand 0x2000'f704 0x4 Data Lc xfail_s.o [7] -send_uart_pack 0x802'0343 0x48 Code Lc frt_protocol.o [1] -stage_rfft_f32 0x801'ed85 0xac Code Gb arm_rfft_fast_f32.o [8] -strchr 0x801'ae15 Code Gb strchr.o [10] -strlen 0x801'ae75 Code Gb strlen.o [10] -strrchr 0x802'1809 0x1c Code Gb strrchr.o [7] +scalbln 0x801'aff5 Code Gb ldexp.o [10] +scalblnl 0x801'aff5 Code Gb ldexp.o [10] +scalbn 0x801'aff5 Code Gb ldexp.o [10] +scalbnl 0x801'aff5 Code Gb ldexp.o [10] +scale 0x801'acc9 0x46 Code Lc xprintffull_nomb.o [8] +sec_hand 0x2000'f704 0x4 Data Lc xfail_s.o [8] +send_uart_pack 0x802'02ff 0x48 Code Lc frt_protocol.o [1] +stage_rfft_f32 0x801'ed85 0xac Code Gb arm_rfft_fast_f32.o [9] +strchr 0x801'ae15 Code Gb strchr.o [11] +strlen 0x801'ae75 Code Gb strlen.o [11] +strrchr 0x802'1809 0x1c Code Gb strrchr.o [8] term_in_buff 0x2000'f1dc 0xc8 Data Lc uart_dev.o [1] term_out_buff 0x2000'f2a4 0x64 Data Lc uart_dev.o [1] term_printf 0x802'1043 0x2c Code Gb uart_dev.o [1] -twiddleCoef_1024 0x801'018c 0x2000 Data Gb arm_common_tables.o [8] -twiddleCoef_128 0x802'2a20 0x400 Data Gb arm_common_tables.o [8] -twiddleCoef_16 0x802'4170 0x80 Data Gb arm_common_tables.o [8] -twiddleCoef_2048 0x800'818c 0x4000 Data Gb arm_common_tables.o [8] -twiddleCoef_256 0x802'1a20 0x800 Data Gb arm_common_tables.o [8] -twiddleCoef_32 0x802'3eb0 0x100 Data Gb arm_common_tables.o [8] -twiddleCoef_4096 0x800'018c 0x8000 Data Gb arm_common_tables.o [8] -twiddleCoef_512 0x801'7ecc 0x1000 Data Gb arm_common_tables.o [8] -twiddleCoef_64 0x802'3910 0x200 Data Gb arm_common_tables.o [8] -twiddleCoef_rfft_1024 0x801'8ecc 0x1000 Data Gb arm_common_tables.o [8] -twiddleCoef_rfft_128 0x802'3b10 0x200 Data Gb arm_common_tables.o [8] -twiddleCoef_rfft_2048 0x801'218c 0x2000 Data Gb arm_common_tables.o [8] -twiddleCoef_rfft_256 0x802'2e20 0x400 Data Gb arm_common_tables.o [8] -twiddleCoef_rfft_32 0x802'41f0 0x80 Data Gb arm_common_tables.o [8] -twiddleCoef_rfft_4096 0x800'c18c 0x4000 Data Gb arm_common_tables.o [8] -twiddleCoef_rfft_512 0x802'2220 0x800 Data Gb arm_common_tables.o [8] -twiddleCoef_rfft_64 0x802'3fb0 0x100 Data Gb arm_common_tables.o [8] +twiddleCoef_1024 0x801'018c 0x2000 Data Gb arm_common_tables.o [9] +twiddleCoef_128 0x802'2a20 0x400 Data Gb arm_common_tables.o [9] +twiddleCoef_16 0x802'4170 0x80 Data Gb arm_common_tables.o [9] +twiddleCoef_2048 0x800'818c 0x4000 Data Gb arm_common_tables.o [9] +twiddleCoef_256 0x802'1a20 0x800 Data Gb arm_common_tables.o [9] +twiddleCoef_32 0x802'3eb0 0x100 Data Gb arm_common_tables.o [9] +twiddleCoef_4096 0x800'018c 0x8000 Data Gb arm_common_tables.o [9] +twiddleCoef_512 0x801'7ecc 0x1000 Data Gb arm_common_tables.o [9] +twiddleCoef_64 0x802'3910 0x200 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_1024 0x801'8ecc 0x1000 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_128 0x802'3b10 0x200 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_2048 0x801'218c 0x2000 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_256 0x802'2e20 0x400 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_32 0x802'41f0 0x80 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_4096 0x800'c18c 0x4000 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_512 0x802'2220 0x800 Data Gb arm_common_tables.o [9] +twiddleCoef_rfft_64 0x802'3fb0 0x100 Data Gb arm_common_tables.o [9] uart_dev_char_present 0x802'1007 0x1a Code Gb uart_dev.o [1] uart_dev_in_char 0x802'1021 0x1c Code Gb uart_dev.o [1] uart_dev_write 0x802'0fe9 0x1a Code Gb uart_dev.o [1] @@ -971,7 +976,7 @@ uart_sendstr 0x802'0fbf 0x2a Code Gb uart_dev.o [1] uwTick 0x2000'013c 0x4 Data Gb stm32l4xx_hal.o [5] uwTickFreq 0x2000'0138 0x1 Data Gb stm32l4xx_hal.o [5] uwTickPrio 0x2000'0140 0x4 Data Gb stm32l4xx_hal.o [5] -vsprintf 0x802'19ed 0x34 Code Gb vsprintf.o [7] +vsprintf 0x802'19ed 0x34 Code Gb vsprintf.o [8] window_data 0x2000'b1c0 0x2000 Data Gb main.o [3] @@ -980,15 +985,16 @@ window_data 0x2000'b1c0 0x2000 Data Gb main.o [3] [3] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\Core_13247989168731456611.dir [4] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\EWARM_18443280873093131863.dir [5] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\STM32L4xx_HAL_Driver_2987639196379523013.dir -[6] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir -[7] = dl7M_tlf.a -[8] = iar_cortexM4lf_math.a -[9] = m7M_tls.a -[10] = rt7M_tl.a -[11] = shb_l.a +[6] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\e22_1376246393639769861.dir +[7] = E:\Y\IAR\stm32l431_xl_current_with_uart\EWARM\STM32L431_XL_CURRENT_V10\Obj\ring_queue_4579790358902792442.dir +[8] = dl7M_tlf.a +[9] = iar_cortexM4lf_math.a +[10] = m7M_tls.a +[11] = rt7M_tl.a +[12] = shb_l.a 29'059 bytes of readonly code memory - 120'229 bytes of readonly data memory + 120'228 bytes of readonly data memory 64'266 bytes of readwrite data memory Errors: none diff --git a/EWARM/STM32L431_XL_CURRENT_V10/Obj/Core_13247989168731456611.dir/main.o b/EWARM/STM32L431_XL_CURRENT_V10/Obj/Core_13247989168731456611.dir/main.o index d7a1757..97b4dfd 100644 Binary files a/EWARM/STM32L431_XL_CURRENT_V10/Obj/Core_13247989168731456611.dir/main.o and b/EWARM/STM32L431_XL_CURRENT_V10/Obj/Core_13247989168731456611.dir/main.o differ diff --git a/EWARM/STM32L431_XL_CURRENT_V10/Obj/e22_1376246393639769861.dir/e22.o b/EWARM/STM32L431_XL_CURRENT_V10/Obj/e22_1376246393639769861.dir/e22.o new file mode 100644 index 0000000..065d63e Binary files /dev/null and b/EWARM/STM32L431_XL_CURRENT_V10/Obj/e22_1376246393639769861.dir/e22.o differ diff --git a/EWARM/settings/Project.wsdt b/EWARM/settings/Project.wsdt index 95d0829..c247451 100644 --- a/EWARM/settings/Project.wsdt +++ b/EWARM/settings/Project.wsdt @@ -20,7 +20,7 @@ 20 2 - + 0 -1 @@ -75,6 +75,7 @@ STM32L431_XL_CURRENT_V10/Application/User STM32L431_XL_CURRENT_V10/Application/User/Core STM32L431_XL_CURRENT_V10/Drivers + STM32L431_XL_CURRENT_V10/Drivers/e22 STM32L431_XL_CURRENT_V10/Middlewares STM32L431_XL_CURRENT_V10/Middlewares/FreeRTOS STM32L431_XL_CURRENT_V10/Middlewares/Library @@ -92,11 +93,11 @@ 1 1 1 - 56010000E00008800000010000002387000001000000B28000000100000057860000040000001980000001000000D08400000100000001DC0000010000005984000001000000048400000100000040E10000010000002981000002000000A18000000100000013860000010000001B8F000001000000299200000300000017820000010000000184000001000000599200000100000019B00000010000000481000001000000568400000300000026810000020000003BB000000100000048810000010000001086000001000000AF800000010000002CE100000400000015810000020000009E800000010000000D970000020000008A800000020000002381000001000000AF0600000E000000F0800000010000006BB000000100000016B00000010000004581000001000000318400000100000029E100000800000001810000E800000007E100000200000023920000010000009B8000000100000012810000020000000D86000001000000AC8000000100000086840000130000002092000001000000BA8000000100000002B0000001000000539200000100000079B00000010000000A860000010000009BB00000010000000C8400000100000004E10000040000005F8600000100000000900000010000008780000001000000A9800000010000000F810000010000002081000001000000259E000002000000499C00000100000026DE000004000000A680000001000000EA8000000300000001E100000500000023E10000010000000D800000050000003F81000001000000078600000100000004DE0000010000001D810000150000000C81000054000000A6B00000010000001EB000000100000003DC0000010000002FB00000010000000486000001000000198200000100000006840000010000002397000002000000B180000001000000018600000100000000DC000002000000A0800000010000005FB00000010000003DB0000001000000288100000500000003840000010000009A8600000100000017810000010000001A8F000001000000568600000100000028920000010000004297000001000000148100000B00000047810000010000006DB000000100000055840000050000007784000001000000808C00000200000000840000040000001184000001000000AE800000010000009D800000010000002BE1000048000000259200000100000000810000600000008980000001000000BC8000000200000044810000010000000C86000001000000BFB000000100000028E10000C30000000E84000019000000AB800000010000008584000004000000228100000100000045D50000010000004D970000010000002F8200000200000056B0000001000000029E000002000000EC8000000100000001B00000010000001A8600000100000023B000000100000028DE00000200000009860000010000001F81000001000000ECFFFFFF010000005E8600000100000003E100009B0000000E810000E1000000A580000002000000E980000001000000A8B000000100000020B000000100000053B000000100000000E100000C0000008E8600000100000006860000010000000B81000003000000F78000000100000041E100000200000083B0000001000000D1840000020000007C8400000100000058860000010000002EB000000100000005840000060000006986000001000000A280000001000000148600000100000018820000090000005A8400000100000021870000010000002A8F000001000000B08000000100000002840000010000003CB000000100000000860000010000005586000001000000198F0000010000002781000006000000058100000300000016810000020000001186000001000000509C000001000000F1800000010000009C80000002000000E3B0000001000000028100000100000017B00000010000002AE100000200000024920000010000001084000007000000468100000100000001E8000001000000BB80000003000000AA8000000100000043810000010000005184000001000000549200000100000047B000000100000025B000000200000003B0000001000000218100001C0000000B86000001000000888000000100000060860000010000009980000001000000B880000001000000EB80000001000000129E000004000000198600000400000035E100000400000002E100000200000055B0000001000000AAB0000001000000A186000001000000C3860000010000000A8400000B000000088600000100000077B000000100000024E10000030000001E8100002D000000A780000001000000C9800000010000005D860000010000000D810000050000000B80000001000000A48000000100000024DE000001000000C086000001000000E880000001000000A7B000000100000004DC000001000000058600000100000016860000020000000784000001000000449C000001000000 + 58010000E00008800000010000002387000001000000B28000000100000057860000040000001980000001000000D08400000100000001DC0000010000005984000001000000048400000100000040E10000010000002981000002000000A18000000100000013860000010000001B8F000001000000299200000300000017820000010000000184000001000000599200000100000019B00000010000000481000001000000568400000300000026810000020000003BB000000100000048810000010000001086000001000000AF800000010000002CE100000400000015810000020000009E800000010000000D970000020000008A800000020000002381000001000000AF0600000E000000F0800000010000006BB000000100000016B00000010000004581000001000000318400000100000029E100000800000001810000E800000007E100000200000023920000010000009B8000000100000012810000020000000D86000001000000AC8000000100000086840000130000002092000001000000BA8000000100000002B0000001000000539200000100000079B00000010000000A860000010000009BB00000010000000C8400000100000004E10000040000005F8600000100000000900000010000008780000001000000A9800000010000000F810000010000002081000001000000259E000002000000499C00000100000026DE000004000000A680000001000000EA8000000300000001E100000500000023E10000010000000D800000050000003F81000001000000078600000100000004DE0000010000001D810000150000000C81000055000000A6B00000010000001EB000000100000003DC0000010000002FB00000010000000486000001000000198200000100000006840000010000002397000002000000B180000001000000018600000100000000DC000002000000A0800000010000005FB00000010000003DB0000001000000288100000500000003840000010000009A8600000100000017810000010000001A8F000001000000568600000100000028920000010000004297000001000000148100000C00000047810000010000006DB000000100000055840000050000007784000001000000808C00000200000000840000040000001184000001000000AE800000010000009D800000010000002BE1000048000000259200000100000000810000600000008980000001000000BC8000000200000044810000010000000C86000001000000BFB000000100000028E10000C30000000E84000019000000AB800000010000008584000004000000228100000100000045D50000010000004D970000010000002F8200000200000056B0000001000000029E000002000000EC8000000100000001B00000010000001A8600000100000023B000000100000028DE00000200000009860000010000001F81000001000000ECFFFFFF010000005E8600000100000003E100009B0000000E810000E1000000A580000002000000E980000001000000A8B000000100000020B000000100000053B000000100000000E100000C0000008E8600000100000006860000010000000B81000003000000F78000000100000041E100000200000083B0000001000000D1840000020000007C8400000100000058860000010000002EB000000100000005840000060000006986000001000000A280000001000000148600000100000018820000090000005A8400000100000021870000010000002A8F000001000000B08000000100000002840000010000003CB000000100000000860000010000005586000001000000198F0000010000002781000006000000058100000300000016810000020000001186000001000000509C000001000000F1800000010000009C80000002000000E3B0000001000000028100000100000017B00000010000002AE100000200000024920000010000001084000007000000468100000100000001E8000001000000BB80000003000000AA8000000100000043810000010000005184000001000000549200000100000047B000000100000025B000000200000003B0000001000000218100001C0000000B86000001000000888000000100000060860000010000009980000001000000B880000001000000EB80000001000000129E000004000000198600000400000035E100000400000002E100000200000055B0000001000000AAB0000001000000A186000001000000C3860000010000000A8400000B000000088600000100000077B000000100000024E10000030000001E8100002D000000A780000001000000C9800000010000005D860000010000000D810000050000000B80000001000000A48000000100000024DE000001000000C086000001000000E880000001000000A7B000000100000004DC000001000000058600000100000016860000020000000784000001000000449C000001000000 21000D8400000F84000008840000FFFFFFFF54840000328100001C81000009840000818400007D8400008284000083840000848400000C8400003384000078840000118400005E84000008800000098000000A8000000B8000000C800000158000000A81000001E8000053840000008800000188000002880000038800000488000005880000 - A200029700008500000024970000DC0400000484000088020000908000002C0100001B8F000004000000A18000001E070000298100006E0F0000D08400000C00000015810000750000002CE100006F0700008D800000ED0C000004810000200000009E800000450100002681000025000000188F000007000000018400004A000000AF800000530100001E970000D604000007E100009000000029E100006D0700003184000055000000239200000000000045810000040000009B80000018070000018100001A000000AC800000CC030000BA800000D10000000A9700006600000004E100008E0000008780000040070000208100002F0000000F8100002700000000900000590000005F86000034000000A9800000C90300001D920000920000003A970000F30400000D8000006900000001E100008B000000848000004507000023E10000690700000C81000024000000B7800000330700001D810000660F00003F81000031000000A6800000BE000000958000002F200000049700008700000026970000EA040000198200003E070000068400008A020000928000002E0100000981000022000000A380000020070000B4800000CC000000019700008400000034970000EE04000023970000DF0400001781000077000000168200003C070000038400004D0000008F8000002B0100001A8F000006000000B18000002E070000A08000001D070000288100006D0F00004A8100003F000000259200009300000031970000EB04000014810000740000002BE100006E0700008C800000EC0C00009D800000440100000084000074070000AE8000002B0700000C97000017000000008100006A000000308400008E0200000E8400008C02000028E100006C07000085840000050000004481000002000000449200004102000022920000FF000000898000000F000000AB800000CB030000BC800000D30000003C970000F504000003E100008D0000002F8200003F07000025E100006B0700001F8100002E0000000E8100002600000086800000540100001F9200003E020000B980000035070000A88000005308000039970000F2040000069700001D0500004A970000FA0E000000E100008A00000022E10000680700000B8100005902000094800000300100002D9200000B000000B6800000320700005D84000001000000C78000009D1D0000A5800000BD000000039700008600000025970000E904000041E1000097000000188200003D0700002B80000044070000D184000009000000058400004F000000918000002D010000A28000001F070000B38000005E080000009700007C000000168100007600000005810000210000009F80000046010000028400004C0000008E8000002A010000198F000001000000278100006C0F0000498100003E000000B08000005B0800009C80000043010000328400005600000010840000530000008B8000002701000002810000590F0000AD800000CD030000BB800000D20000000B9700006700000051840000A800000005E100008F000000218100005A07000088800000410700004381000003000000AA800000CA0300003B970000F40400004C970000FA0E000002E100008C00000085800000460700000D8100005B02000024E100006A0700000A8400005100000035E1000046000000B8800000340700001E810000670F0000A7800000BF000000968000003020000027970000E0040000059700001C050000938000002F0100002C9200000A0000005C84000000000000A480000021070000B580000067020000 + A200029700008500000024970000DC040000048400004D000000908000002C0100001B8F000004000000A18000001E070000298100006E0F0000D08400000C00000015810000240000002CE100006F0700008D800000ED0C000004810000200000009E800000450100002681000025000000188F000007000000018400004A000000AF800000530100001E970000D604000007E100003F00000029E100006D0700003184000055000000239200000000000045810000040000009B80000018070000018100001A000000AC800000CC030000BA800000D10000000A9700006600000004E100003D0000008780000040070000208100002F0000000F8100002700000000900000590000005F86000034000000A9800000C90300001D920000920000003A970000F30400000D8000001800000001E100003A000000848000004507000023E10000690700000C81000024000000B7800000330700001D810000660F00003F81000031000000A6800000BE000000958000002F200000049700008700000026970000EA040000198200003E070000068400004F000000928000002E0100000981000022000000A380000020070000B4800000CC000000019700008400000034970000EE04000023970000DF0400001781000026000000168200003C070000038400004D0000008F8000002B0100001A8F000006000000B18000002E070000A08000001D070000288100006D0F00004A8100003F000000259200009300000031970000EB04000014810000230000002BE100006E0700008C800000EC0C00009D800000440100000084000074070000AE8000002B0700000C97000017000000008100001900000030840000530000000E8400005100000028E100006C07000085840000050000004481000002000000449200004102000022920000FF000000898000000F000000AB800000CB030000BC800000D30000003C970000F504000003E100003C0000002F8200003F07000025E100006B0700001F8100002E0000000E8100002600000086800000540100001F9200003E020000B980000035070000A88000005308000039970000F2040000069700001D0500004A970000FA0E000000E100003900000022E10000680700000B8100001E00000094800000300100002D9200000B000000B6800000320700005D84000001000000C78000009D1D0000A5800000BD000000039700008600000025970000E904000041E1000046000000188200003D0700002B80000044070000D184000009000000058400004F000000918000002D010000A28000001F070000B38000005E080000009700007C000000168100002500000005810000210000009F80000046010000028400004C0000008E8000002A010000198F000001000000278100006C0F0000498100003E000000B08000005B0800009C80000043010000328400005600000010840000530000008B8000002701000002810000590F0000AD800000CD030000BB800000D20000000B97000067000000518400005700000005E100003E000000218100005A07000088800000410700004381000003000000AA800000CA0300003B970000F40400004C970000FA0E000002E100003B00000085800000460700000D8100002000000024E100006A0700000A8400005100000035E1000046000000B8800000340700001E810000670F0000A7800000BF000000968000003020000027970000E0040000059700001C050000938000002F0100002C9200000A0000005C84000000000000A480000021070000B580000067020000 0 @@ -159,9 +160,9 @@ _I0 - 526 + 531 40 - 1303 + 1315 20 2 @@ -200,7 +201,7 @@ 101 1219 2 - + 0 -1 @@ -222,7 +223,7 @@ 101 1219 2 - + 0 -1 @@ -271,7 +272,7 @@ 39 473 2 - + 0 -1 @@ -309,7 +310,7 @@ 2 - + 0 -1 @@ -331,16 +332,16 @@ 2 - + - + <Right-click on a symbol in the editor to show a call graph> - + 0 @@ -349,7 +350,7 @@ 0 - + 0 @@ -466,7 +467,7 @@ CMSIS-Pack - 00200000010000000100FFFF01001100434D4643546F6F6C426172427574746F6ED18400000200000043020000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF0A43004D005300490053002D005000610063006B0018000000 + 00200000010000000100FFFF01001100434D4643546F6F6C426172427574746F6ED18400000200000008000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF0A43004D005300490053002D005000610063006B0018000000 34049 @@ -483,7 +484,7 @@ Main - 00200000010000002000FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000074020000FFFEFF000000000000000000000000000100000001000000018001E100000000000075020000FFFEFF000000000000000000000000000100000001000000018003E100000000000077020000FFFEFF0000000000000000000000000001000000010000000180008100000000000054020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000000007A020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E10000000004007C020000FFFEFF000000000000000000000000000100000001000000018022E10000000004007B020000FFFEFF000000000000000000000000000100000001000000018025E10000000000007D020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE10000000000007E020000FFFEFF00000000000000000000000000010000000100000001802CE10000000004007F020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01000D005061737465436F6D626F426F784281000000000000FFFFFFFFFFFEFF000000000000000000010000000000000001000000B400000002002050FFFFFFFFFFFEFF00960000000000000000000180218100000000040066020000FFFEFF000000000000000000000000000100000001000000018024E10000000000006F020000FFFEFF000000000000000000000000000100000001000000018028E10000000004006E020000FFFEFF000000000000000000000000000100000001000000018029E100000000000070020000FFFEFF0000000000000000000000000001000000010000000180028100000000000055020000FFFEFF000000000000000000000000000100000001000000018029810000000000006A020000FFFEFF0000000000000000000000000001000000010000000180278100000000000068020000FFFEFF0000000000000000000000000001000000010000000180288100000000000069020000FFFEFF00000000000000000000000000010000000100000001801D8100000000000062020000FFFEFF00000000000000000000000000010000000100000001801E8100000000040063020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B8100000200000059020000FFFEFF00000000000000000000000000010000000100000001800C810000020000005A020000FFFEFF00000000000000000000000000010000000100000001805F860000020000006D020000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800E810000020000005C020000FFFEFF00000000000000000000000000010000000100000001800F810000020000005D020000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E0024030000 + 00200000010000002000FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000039000000FFFEFF000000000000000000000000000100000001000000018001E10000000000003A000000FFFEFF000000000000000000000000000100000001000000018003E10000000004003C000000FFFEFF0000000000000000000000000001000000010000000180008100000000000019000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018007E10000000004003F000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000018023E100000000040041000000FFFEFF000000000000000000000000000100000001000000018022E100000000040040000000FFFEFF000000000000000000000000000100000001000000018025E100000000040042000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001802BE100000000040043000000FFFEFF00000000000000000000000000010000000100000001802CE100000000040044000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF000000000000000000000000000100000001000000FFFF01000D005061737465436F6D626F426F784281000000000400FFFFFFFFFFFEFF000000000000000000010000000000000001000000B400000002002050FFFFFFFFFFFEFF0096000000000000000000018021810000000004002B000000FFFEFF000000000000000000000000000100000001000000018024E100000000040034000000FFFEFF000000000000000000000000000100000001000000018028E100000000040033000000FFFEFF000000000000000000000000000100000001000000018029E100000000040035000000FFFEFF000000000000000000000000000100000001000000018002810000000004001A000000FFFEFF000000000000000000000000000100000001000000018029810000000004002F000000FFFEFF000000000000000000000000000100000001000000018027810000000004002D000000FFFEFF000000000000000000000000000100000001000000018028810000000004002E000000FFFEFF00000000000000000000000000010000000100000001801D8100000000040027000000FFFEFF00000000000000000000000000010000000100000001801E8100000000040028000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800B810000020004001E000000FFFEFF00000000000000000000000000010000000100000001800C810000020000001F000000FFFEFF00000000000000000000000000010000000100000001805F8600000200000032000000FFFEFF00000000000000000000000000010000000100000001800000000001000000FFFFFFFFFFFEFF00000000000000000000000000010000000100000001800E8100000200000021000000FFFEFF00000000000000000000000000010000000100000001800F8100000200000022000000FFFEFF00000000000000000000000000010000000100000000000000FFFEFF044D00610069006E0024030000 34050 @@ -519,7 +520,7 @@ - 0100000003000000010000000000000000000000010000000100000002000000000000000100000001000000000000002800000028000000010000000F0000000000000001000000FFFEFF1B2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006D00610069006E002E00630001000000FFFF010017004966436F6E74656E7453746F726167654D6663496D706CFFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200330031003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0037003400330032003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0037003400330032003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF066D00610069006E002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1A2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006100640063002E006300010000000180FFFEFF00FFFEFFFF27013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00390036003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0031003700350031003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0031003700350031003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056100640063002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C0069006E0066006C006100730068002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003400330035003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003400330035003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0969006E0066006C006100730068002E00680000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C0069006E0066006C006100730068002E006300010000000180FFFEFF00FFFEFFFF25013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00340032003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003400300033003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003400300033003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0969006E0066006C006100730068002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1E2400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C0075006100720074005F006400650076002E006800010000000180FFFEFF00FFFEFFFF26013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0031003200300036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0031003200300036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0A75006100720074005F006400650076002E00680000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C006600720074005F00700072006F0074006F0063006F006C002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003200320039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003200330038003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E6600720074005F00700072006F0074006F0063006F006C002E00680000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C006600720074005F00700072006F0074006F0063006F006C002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003400360033003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310033003800360039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310033003800360039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E6600720074005F00700072006F0074006F0063006F006C002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1E2400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C0075006100720074005F006400650076002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200350034003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0036003200380031003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0036003200380031003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0A75006100720074005F006400650076002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1C2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00750073006100720074002E006300010000000180FFFEFF00FFFEFFFF26013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100340038003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003900300036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003900300036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF07750073006100720074002E00630000000000FFFFFFFFFFFFFFFFFFFEFF232400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00730074006D00330032006C003400780078005F00690074002E006300010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0039003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003900360030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003900360030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E730074006D00330032006C003400780078005F00690074002E00630000000000FFFFFFFFFFFFFFFFFFFEFF2A2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00520069006E006700510075006500750065005C00720069006E0067005F00710075006500750065002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003700320031003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003700320031003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0C720069006E0067005F00710075006500750065002E00680000000000FFFFFFFFFFFFFFFFFFFEFF1B2400570053005F0044004900520024005C002E002E005C0043006F00720065005C0049006E0063005C006D00610069006E002E006800010000000180FFFEFF00FFFEFFFF21013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00330038003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF066D00610069006E002E00680000000000FFFFFFFFFFFFFFFFFFFEFF232400570053005F0044004900520024005C002E002E005C0043006F00720065005C0049006E0063005C00730074006D00330032006C003400780078005F00690074002E006800010000000180FFFEFF00FFFEFFFF26013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0031003900300030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0031003900300030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E730074006D00330032006C003400780078005F00690074002E00680000000000FFFFFFFFFFFFFFFFFFFEFF402400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F006400610063002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003500360033003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00320035003700380039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00320035003700380039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF13730074006D00330032006C003400780078005F00680061006C005F006400610063002E00630000000000FFFFFFFFFFFFFFFFFFFEFF432400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F006400610063005F00650078002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200380034003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310033003200330036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310033003200330036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF16730074006D00330032006C003400780078005F00680061006C005F006400610063005F00650078002E00630000000000FFFFFFFFFFFFFFFF0000000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD50001000000010000000200000026010000490000008007000042030000 + 010000000300000001000000000000000000000001000000010000000200000000000000010000000100000000000000280000002800000001000000110000001000000001000000FFFEFF1B2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006D00610069006E002E00630001000000FFFF010017004966436F6E74656E7453746F726167654D6663496D706CFFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200320030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0036003600350035003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0036003600350035003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF066D00610069006E002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1A2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C006100640063002E006300010000000180FFFEFF00FFFEFFFF27013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00390036003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0031003700350031003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0031003700350031003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056100640063002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C0069006E0066006C006100730068002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003400330035003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003400330035003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0969006E0066006C006100730068002E00680000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C0069006E0066006C006100730068002E006300010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003400300035003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003400300035003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0969006E0066006C006100730068002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1E2400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C0075006100720074005F006400650076002E006800010000000180FFFEFF00FFFEFFFF26013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0031003200300036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0031003200300036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0A75006100720074005F006400650076002E00680000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C004100700070005C0049006E0063005C006600720074005F00700072006F0074006F0063006F006C002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003200320039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003200330038003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E6600720074005F00700072006F0074006F0063006F006C002E00680000000000FFFFFFFFFFFFFFFFFFFEFF222400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C006600720074005F00700072006F0074006F0063006F006C002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200320032003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0032003900300039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0032003900300039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E6600720074005F00700072006F0074006F0063006F006C002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1E2400570053005F0044004900520024005C002E002E005C004100700070005C005300720063005C0075006100720074005F006400650076002E006300010000000180FFFEFF00FFFEFFFF28013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200330038003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0036003200380031003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0036003200380031003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0A75006100720074005F006400650076002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1C2400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00750073006100720074002E006300010000000180FFFEFF00FFFEFFFF26013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003100340038003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003900300036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003900300036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF07750073006100720074002E00630000000000FFFFFFFFFFFFFFFFFFFEFF232400570053005F0044004900520024005C002E002E005C0043006F00720065005C005300720063005C00730074006D00330032006C003400780078005F00690074002E006300010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0039003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003900360030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003900360030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E730074006D00330032006C003400780078005F00690074002E00630000000000FFFFFFFFFFFFFFFFFFFEFF2A2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00520069006E006700510075006500750065005C00720069006E0067005F00710075006500750065002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003800380033003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003800380033003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0C720069006E0067005F00710075006500750065002E00680000000000FFFFFFFFFFFFFFFFFFFEFF1B2400570053005F0044004900520024005C002E002E005C0043006F00720065005C0049006E0063005C006D00610069006E002E006800010000000180FFFEFF00FFFEFFFF27013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00330038003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0032003200350033003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0032003200350033003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF066D00610069006E002E00680000000000FFFFFFFFFFFFFFFFFFFEFF232400570053005F0044004900520024005C002E002E005C0043006F00720065005C0049006E0063005C00730074006D00330032006C003400780078005F00690074002E006800010000000180FFFEFF00FFFEFFFF26013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0031003900300030003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0031003900300030003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF0E730074006D00330032006C003400780078005F00690074002E00680000000000FFFFFFFFFFFFFFFFFFFEFF402400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F006400610063002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003500360033003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00320035003700380039003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00320035003700380039003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF13730074006D00330032006C003400780078005F00680061006C005F006400610063002E00630000000000FFFFFFFFFFFFFFFFFFFEFF432400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C00530054004D00330032004C003400780078005F00480041004C005F004400720069007600650072005C005300720063005C00730074006D00330032006C003400780078005F00680061006C005F006400610063005F00650078002E006300010000000180FFFEFF00FFFEFFFF2A013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E003200380034003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E00310033003200330036003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E00310033003200330036003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF16730074006D00330032006C003400780078005F00680061006C005F006400610063005F00650078002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C006500320032005C006500320032002E006300010000000180FFFEFF00FFFEFFFF27013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E00330030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E0032003700300035003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E0032003700300035003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056500320032002E00630000000000FFFFFFFFFFFFFFFFFFFEFF1D2400570053005F0044004900520024005C002E002E005C0044007200690076006500720073005C006500320032005C006500320032002E006800010000000180FFFEFF00FFFEFFFF24013C003F0078006D006C002000760065007200730069006F006E003D00220031002E0030002200200065006E0063006F00640069006E0067003D0022005500540046002D00380022003F003E000A003C0052006F006F0074003E000A0020002000200020003C004E0075006D0052006F00770073003E0031003C002F004E0075006D0052006F00770073003E000A0020002000200020003C004E0075006D0043006F006C0073003E0031003C002F004E0075006D0043006F006C0073003E000A0020002000200020003C00580050006F0073003E0030003C002F00580050006F0073003E000A0020002000200020003C00590050006F0073003E0030003C002F00590050006F0073003E000A0020002000200020003C00530065006C00530074006100720074003E0030003C002F00530065006C00530074006100720074003E000A0020002000200020003C00530065006C0045006E0064003E0030003C002F00530065006C0045006E0064003E000A0020002000200020003C00580050006F00730032003E0030003C002F00580050006F00730032003E000A0020002000200020003C00590050006F00730032003E0030003C002F00590050006F00730032003E000A0020002000200020003C00530065006C005300740061007200740032003E003300320032003C002F00530065006C005300740061007200740032003E000A0020002000200020003C00530065006C0045006E00640032003E003300320032003C002F00530065006C0045006E00640032003E000A003C002F0052006F006F0074003E000A00FFFEFF056500320032002E00680000000000FFFFFFFFFFFFFFFF0000000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD50001000000010000000200000026010000490000008007000042030000 diff --git a/EWARM/settings/STM32L431_XL_CURRENT_V10.dnx b/EWARM/settings/STM32L431_XL_CURRENT_V10.dnx index 10d1e68..b6cd8ee 100644 --- a/EWARM/settings/STM32L431_XL_CURRENT_V10.dnx +++ b/EWARM/settings/STM32L431_XL_CURRENT_V10.dnx @@ -3,10 +3,10 @@ 131A10002B135937334D4E00 - _ 0 - _ 0 0 2 + _ 0 + _ 0 0